set → tuple
This commit is contained in:
parent
80f98167f2
commit
f11d7586a9
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue