Compare commits

...

3 Commits

Author SHA1 Message Date
a76c6d3da8
Bump version to 3.1.1 2022-11-27 15:01:06 -08:00
c84758af56
list, not tuple 2022-11-27 15:00:37 -08:00
3a9c8d2bf2
Revert "Bump version to 3.1.1"
This reverts commit 12f97ae765.
2022-11-27 14:56:10 -08:00

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: