This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
testtest
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Merge pull request
#33
from ggirelli/master
Removed self.__class__ from super() call
zolfa-add_slices_loading
Ruben Verweij
5 years ago
committed by
GitHub
parent
8c6d77a11f
fe2bb5932c
commit
e165788c14
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