Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
aaclause committed Feb 18, 2020
1 parent 0890f05 commit f4cfd97
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/brailleInput.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,9 @@ def sendChars(self, chars: str):
@param chars: The characters to send to the system.
"""
inputs = []
chars = ''.join(ch if ord(ch) <= 0xffff else ''.join(chr(x) for x in struct.unpack(">2H", ch.encode("utf-16be"))) for ch in chars)
chars = ''.join(
ch if ord(ch) <= 0xffff else ''.join(
chr(x) for x in struct.unpack(">2H", ch.encode("utf-16be"))) for ch in chars)
for ch in chars:
for direction in (0,winUser.KEYEVENTF_KEYUP):
input = winUser.Input()
Expand Down

0 comments on commit f4cfd97

Please sign in to comment.