Skip to content

Commit

Permalink
Fix typo in variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
eivindjahren committed Jan 30, 2025
1 parent a64593d commit e73b975
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ert/enkf_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ def _manifest_to_json(ensemble: Ensemble, iens: int, iter: int) -> dict[str, Any
)
manifest[param_config.name] = file_path
# Add expected response files to manifest
for respons_config in ensemble.experiment.response_configuration.values():
for input_file in respons_config.expected_input_files:
manifest[f"{respons_config.response_type}_{input_file}"] = (
for response_config in ensemble.experiment.response_configuration.values():
for input_file in response_config.expected_input_files:
manifest[f"{response_config.response_type}_{input_file}"] = (
substitute_runpath_name(input_file, iens, iter)
)

Expand Down

0 comments on commit e73b975

Please sign in to comment.