list, not tuple

This commit is contained in:
Samuel Sloniker 2022-11-27 15:00:37 -08:00
parent 3a9c8d2bf2
commit c84758af56
Signed by: kj7rrv
GPG Key ID: 1BB4029E66285A62

View File

@ -41,7 +41,7 @@ def compile(
word_counts: Dict[int, Dict[str, int]] = {}
names = tuple(categories.keys())
names = list(categories.keys())
for category, text in categories.items():
for word in text: