From f11d7586a993522832efed78cfa5e3654bb48258 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Delenk?= Date: Wed, 27 Jul 2022 21:41:10 +0100 Subject: [PATCH] =?UTF-8?q?set=20=E2=86=92=20tuple?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plover_machine_hid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plover_machine_hid.py b/plover_machine_hid.py index 64b9c95..8d6ffec 100644 --- a/plover_machine_hid.py +++ b/plover_machine_hid.py @@ -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):