Browse Source

Removed self.__class__ from super() call

zolfa-add_slices_loading
Gabriele Girelli 4 years ago
committed by GitHub
parent
commit
fe2bb5932c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      nd2reader/reader.py

+ 1
- 1
nd2reader/reader.py View File

@ -14,7 +14,7 @@ class ND2Reader(FramesSequenceND):
class_priority = 12
def __init__(self, filename):
super(self.__class__, self).__init__()
super(ND2Reader, self).__init__()
self.filename = filename
# first use the parser to parse the file


Loading…
Cancel
Save