Merge pull request #233 from Gigahawk/fix_send_string

Fix send_string (#206)
This commit is contained in:
Josh Klar 2021-09-14 03:09:47 +00:00 committed by GitHub
commit d3b315d059
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)