summaryrefslogtreecommitdiff
path: root/unscrambler.py
diff options
context:
space:
mode:
authorScott <[email protected]>2022-02-02 11:09:18 -0800
committerScott <[email protected]>2022-02-02 11:09:18 -0800
commit5317c50ce7a96a37acfab3800c0935580766dbbf (patch)
tree2da99b27342a873e0a8fe0e3d49fa1bec1637e79 /unscrambler.py
parent1ce11b3c28d175b6dcbfea9cf6367081f049c5a9 (diff)
mypy clean!
Diffstat (limited to 'unscrambler.py')
-rw-r--r--unscrambler.py2
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: