Skip to content

Commit a4e3a08

Browse files
committed
Clarity: fix call to super __init__
1 parent 6013dc2 commit a4e3a08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

microscope/filterwheels/aurox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class Clarity(microscope.devices.FilterWheelBase):
8787
__FULLSTAT: 10}
8888

8989
def __init__(self, *args, **kwargs):
90-
super().__init__(self, *args, **kwargs)
90+
super().__init__(*args, **kwargs)
9191
from threading import Lock
9292
self._lock = Lock()
9393
self._hid = None

0 commit comments

Comments
 (0)