diff --git a/nd2reader/reader.py b/nd2reader/reader.py index 45aefe6..bb3de61 100644 --- a/nd2reader/reader.py +++ b/nd2reader/reader.py @@ -106,6 +106,9 @@ class ND2Reader(FramesSequenceND): # Actually get the corresponding Frame results[index] = Frame(self._parser.get_image_by_attributes(*current_coords), metadata=self.metadata) + if len(bundle_axes) == 0: + return results[0] + return results def _get_possible_coords(self, dim, default):