Skip to content

Commit b63a241

Browse files
committed
Tweak superclass initialization
1 parent a5e8031 commit b63a241

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_cursorcontrol/cursorcontrol_cursormanager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ class DebouncedCursorManager(CursorManager):
169169
:param adafruit_cursorcontrol cursor: The cursor object we are using.
170170
"""
171171
def __init__(self, cursor, debounce_interval=0.01):
172-
super().__init__(self, cursor)
172+
CursorManager.__init__(self, cursor)
173173
self._pressed = 0
174174
self._debouncer = Debouncer(lambda: bool(self._pressed & self._pad_btns['btn_a']), interval=debounce_interval)
175175

0 commit comments

Comments
 (0)