aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--2015/13/puzzles.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/2015/13/puzzles.py b/2015/13/puzzles.py
index 33e49e1..4ef351b 100644
--- a/2015/13/puzzles.py
+++ b/2015/13/puzzles.py
@@ -22,7 +22,7 @@ def main() -> None:
)
)
- emap: DefaultDict[str, dict[str, int]] = defaultdict(lambda: {})
+ emap: DefaultDict[str, dict[str, int]] = defaultdict(dict)
for entry in entries:
emap[entry[0]][entry[3]] = entry[2]
# START PART 2