diff --git a/nd2reader/reader.py b/nd2reader/reader.py index f97e1a0..4e14f42 100644 --- a/nd2reader/reader.py +++ b/nd2reader/reader.py @@ -22,16 +22,18 @@ class ND2Reader(FramesSequenceND): """ super(ND2Reader, self).__init__() + self.filename = "" + if isinstance(fh, str): if not fh.endswith(".nd2"): raise InvalidFileType( ("The file %s you want to read with nd2reader" % fh) + " does not have extension .nd2." ) + self.filename = fh fh = open(fh, "rb") self._fh = fh - self.filename = "" self._parser = Parser(self._fh)