Browse Source

Removed self.__class__ from super() call

master
Gabriele Girelli 4 years ago
committed by GitHub
parent
commit
1c6f517366
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
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