We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f69e4a0 commit cc477d2Copy full SHA for cc477d2
code.py
@@ -31,13 +31,13 @@ def press(k):
31
kbd.press(Keycode.LEFT_BRACKET)
32
elif k == 'RIGHT_BRACKET' or k == 'RIGHTBRACKET':
33
kbd.press(Keycode.RIGHT_BRACKET)
34
- elif k == 'BACKSLASH' or k == 'RETURN':
+ elif k == 'BACKSLASH':
35
kbd.press(Keycode.BACKSLASH)
36
- elif k == 'POUND' or k == 'RETURN':
+ elif k == 'POUND':
37
kbd.press(Keycode.POUND)
38
- elif k == 'SEMICOLON' or k == 'RETURN':
+ elif k == 'SEMICOLON':
39
kbd.press(Keycode.SEMICOLON)
40
- elif k == 'QUOTE' or k == 'RETURN':
+ elif k == 'QUOTE':
41
kbd.press(Keycode.QUOTE)
42
elif k == 'TILDE':
43
kbd.press(Keycode.GRAVE_ACCENT)
0 commit comments