This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
nd2reader
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Removed self.__class__ from super() call
master
Gabriele Girelli
5 years ago
committed by
GitHub
parent
4eea6a81a1
commit
1c6f517366
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
Write
Preview
Loading…
Cancel
Save