Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypinkard committed Jul 31, 2023
1 parent a02b88e commit 680a064
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/ndtiff/nd_tiff_current.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,8 @@ def _parse_string_axes(self, single_axes_position=None):
if single_axes_position is None:
# parse all axes_positions in the dataset
for single_axes_position in self.index.keys():
for axis_name, axis_value in single_axes_position.items():
# this is a set of tuples of (axis_name, axis_value)
for axis_name, axis_value in single_axes_position:
if axis_name in self._string_axes_values.keys() and \
axis_value not in self._string_axes_values[axis_name]:
self._string_axes_values[axis_name].append(axis_value)
Expand Down

0 comments on commit 680a064

Please sign in to comment.