Skip to content

Commit 1d551c0

Browse files
committed
Fix experiment link import
1 parent 4f1f0a7 commit 1d551c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eval_protocol/pytest/plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,9 +283,9 @@ def pytest_sessionfinish(session, exitstatus):
283283
"""Print all collected Fireworks experiment links from pytest stash."""
284284
try:
285285
# Late import to avoid circulars; if missing key, skip printing
286-
EXPERIMENT_LINKS_STASH_KEY: StashKey[list[dict]] | None = None
286+
EXPERIMENT_LINKS_STASH_KEY = None
287287
try:
288-
from .evaluation_test import EXPERIMENT_LINKS_STASH_KEY as _KEY # type: ignore
288+
from .store_experiment_link import EXPERIMENT_LINKS_STASH_KEY as _KEY # type: ignore
289289

290290
EXPERIMENT_LINKS_STASH_KEY = _KEY
291291
except Exception:

0 commit comments

Comments
 (0)