Browse Source

Fixes issue #16

feature/load_slices
Ruben Verweij 5 years ago
parent
commit
16cb8fb67f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      nd2reader/raw_metadata.py

+ 1
- 1
nd2reader/raw_metadata.py View File

@ -193,7 +193,7 @@ class RawMetadata(object):
if not match:
return []
count = int(match.group(1))
return list(range(count))
return range(count)
def _parse_total_images_per_channel(self):
"""The total number of images per channel.


Loading…
Cancel
Save