Skip to content

Commit c4edbd8

Browse files
committed
fix
1 parent ddfa783 commit c4edbd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

commands2/button/commandgenerichid.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,10 +197,10 @@ def setRumble(self, type: GenericHID.RumbleType, value: float):
197197
"""
198198
self._hid.setRumble(type, value)
199199

200-
def isConnected():
200+
def isConnected(self):
201201
"""
202202
Get if the HID is connected.
203203
204204
:returns: True if the HID is connected.
205205
"""
206-
return this._hid.isConnected()
206+
return self._hid.isConnected()

0 commit comments

Comments
 (0)