diff options
Diffstat (limited to 'unscrambler.py')
| -rw-r--r-- | unscrambler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unscrambler.py b/unscrambler.py index 8fcd65d..d9e4253 100644 --- a/unscrambler.py +++ b/unscrambler.py @@ -198,7 +198,7 @@ class Unscrambler(object): unless you want to populate the same exact files. """ - words_by_sigs = {} + words_by_sigs: Dict[int, str] = {} seen = set() with open(dictfile, "r") as f: for word in f: |
