fix typo bug for frame check

master
pullusb 2024-01-12 15:37:14 +01:00
parent 23811bf752
commit 8152b8a7fd
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ def following_keys(forward=True, all_keys=False) -> list:# -> list[int] | list |
return []
# Sort frames (invert if looking backward)
frames.sort(reversed=not forward)
frames.sort(reverse=not forward)
if all_keys:
frames = list(set(frames))