Skip to content

Commit

Permalink
Fixup oops wrong accessor
Browse files Browse the repository at this point in the history
  • Loading branch information
Yngve S. Kristiansen committed Sep 27, 2024
1 parent ffb89ba commit fac1eae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/everest/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def get_internalized_keys(config: EverestConfig, batch_ids: Optional[Set[int]] =
case_name = f"batch_{batch_id}"
experiments = [*storage.experiments]
assert len(experiments) == 1
experiment = storage.experiments[0]
experiment = experiments[0]

ensemble = experiment.get_ensemble_by_name(case_name)
if not internal_keys:
Expand Down

0 comments on commit fac1eae

Please sign in to comment.