Skip to content

Commit

Permalink
fix: update ignore comments
Browse files Browse the repository at this point in the history
  • Loading branch information
winstxnhdw committed Jul 2, 2024
1 parent fd0bf81 commit 92bba06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keywin/keyboard/utils/convert_to_key_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ def convert_to_key_code(string: str) -> list[list[int]]:

for key, group in groupby((Typables.table[character] for character in string), type):
if key == list:
key_codes.extend(group) # pyright: ignore[reportGeneralTypeIssues]
key_codes.extend(group) # pyright: ignore[reportArgumentType]

else:
key_codes.append(list(group)) # pyright: ignore[reportGeneralTypeIssues]
key_codes.append(list(group)) # pyright: ignore[reportArgumentType]

return key_codes

Expand Down

0 comments on commit 92bba06

Please sign in to comment.