Skip to content

Commit

Permalink
Bugfix: loop over all keys/report steps
Browse files Browse the repository at this point in the history
  • Loading branch information
Yngve S. Kristiansen committed Sep 9, 2024
1 parent c7bc450 commit 54dbd20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ert/dark_storage/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ def gen_data_keys(ensemble: Ensemble) -> Iterator[str]:
):
if report_steps is None:
yield f"{key}@0"
return
for report_step in report_steps:
yield f"{key}@{report_step}"
else:
for report_step in report_steps:
yield f"{key}@{report_step}"


def data_for_key(
Expand Down

0 comments on commit 54dbd20

Please sign in to comment.