set → tuple

This commit is contained in:
Charlotte 🦝 Delenk 2022-07-27 21:41:10 +01:00
parent 80f98167f2
commit f11d7586a9
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122

View file

@ -43,7 +43,7 @@ SIMPLE_REPORT_LEN: int = 32
class InvalidReport(Exception):
pass
STENO_KEY_CHART = set(f"X{i}" for i in range(1, N_LEVERS + 1))
STENO_KEY_CHART = tuple(f"X{i}" for i in range(1, N_LEVERS + 1))
print('steno key chart', len(STENO_KEY_CHART))
class HidMachine(ThreadedStenotypeBase):