Fix send_string (#206)

This commit is contained in:
Jasper Chan 2021-09-13 00:29:23 -07:00
parent 02a9a088a0
commit 88e3fe45d4

View File

@ -42,7 +42,7 @@ def send_string(message):
seq = []
for char in message:
kc = KC[char]
kc = getattr(KC, char.upper())
if char.isupper():
kc = KC.LSHIFT(kc)