We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f1f0a7 commit 1d551c0Copy full SHA for 1d551c0
eval_protocol/pytest/plugin.py
@@ -283,9 +283,9 @@ def pytest_sessionfinish(session, exitstatus):
283
"""Print all collected Fireworks experiment links from pytest stash."""
284
try:
285
# Late import to avoid circulars; if missing key, skip printing
286
- EXPERIMENT_LINKS_STASH_KEY: StashKey[list[dict]] | None = None
+ EXPERIMENT_LINKS_STASH_KEY = None
287
288
- from .evaluation_test import EXPERIMENT_LINKS_STASH_KEY as _KEY # type: ignore
+ from .store_experiment_link import EXPERIMENT_LINKS_STASH_KEY as _KEY # type: ignore
289
290
EXPERIMENT_LINKS_STASH_KEY = _KEY
291
except Exception:
0 commit comments