Browse Source

Merge pull request #43 from ggirelli/ggirelli-filename-patch

Fixed missing filename path.
feature/load_slices
Ruben Verweij 4 years ago
committed by GitHub
parent
commit
728a425a25
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      nd2reader/reader.py

+ 3
- 1
nd2reader/reader.py View File

@ -22,16 +22,18 @@ class ND2Reader(FramesSequenceND):
""" """
super(ND2Reader, self).__init__() super(ND2Reader, self).__init__()
self.filename = ""
if isinstance(fh, str): if isinstance(fh, str):
if not fh.endswith(".nd2"): if not fh.endswith(".nd2"):
raise InvalidFileType( raise InvalidFileType(
("The file %s you want to read with nd2reader" % fh) ("The file %s you want to read with nd2reader" % fh)
+ " does not have extension .nd2." + " does not have extension .nd2."
) )
self.filename = fh
fh = open(fh, "rb") fh = open(fh, "rb")
self._fh = fh self._fh = fh
self.filename = ""
self._parser = Parser(self._fh) self._parser = Parser(self._fh)


Loading…
Cancel
Save