Skip to content

Commit

Permalink
correct wrong assignment by swapping md and z
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-sol committed Jan 15, 2024
1 parent 464576c commit e419567
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/subscript/fmuobs/gen_obs_writers.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def attach_spatial_data_if_exists(file_path: PosixPath, primary_content: dict):
if well_file_path.exists():
LOGGER.debug("Yup")
spatial_content = dump_content_to_dict(
well_file_path, ["X", "Y", "Z", "MD", "Zone"]
well_file_path, ["X", "Y", "MD", "Z", "Zone"]
)
LOGGER.debug("Extracted %s", spatial_content)
else:
Expand Down

0 comments on commit e419567

Please sign in to comment.