Skip to content

Commit

Permalink
Merge pull request #154 from rolfverberg/main
Browse files Browse the repository at this point in the history
fix: bug in CHAP.edd.processor.get_axes
  • Loading branch information
rolfverberg authored Oct 29, 2024
2 parents 554a0e6 + aa5ead8 commit 3599dfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CHAP/edd/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def get_axes(nxdata, skip_axes=None):
if 'unstructured_axes' in nxdata.attrs:
axes = nxdata.attrs['unstructured_axes']
elif 'axes' in nxdata.attrs:
axes = nxdata.attrs.['axes']
axes = nxdata.attrs['axes']
else:
return []
if isinstance(axes, str):
Expand Down

0 comments on commit 3599dfd

Please sign in to comment.