Spaces:
Sleeping
Sleeping
File size: 199 Bytes
801501a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
class Key:
ctrl_l = 'control_l'
class Controller:
@staticmethod
def press(key: str) -> str:
return key
@staticmethod
def release(key: str) -> str:
return key
|