From 3ac99f409ae6545e2f4fece4d9397d28d35b279b Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Thu, 2 Dec 2021 13:58:27 +0100 Subject: Set file encoding when reading --- 2020/07/puzzle-2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '2020/07/puzzle-2.py') diff --git a/2020/07/puzzle-2.py b/2020/07/puzzle-2.py index c87ea13..f77298a 100755 --- a/2020/07/puzzle-2.py +++ b/2020/07/puzzle-2.py @@ -8,11 +8,11 @@ def total_bags(innerbags: list[dict[int, str]]) -> int: if innerbags[0]["name"] == "no other": return 0 - return sum([bag["count"] + bag["count"] * total_bags(bdict[bag["name"]]) for bag in innerbags]) + return sum(bag["count"] + bag["count"] * total_bags(bdict[bag["name"]]) for bag in innerbags) def main() -> None: - with open("input", "r") as f: + with open("input", "r", encoding="utf-8") as f: lines = f.readlines() for baginfo in lines: -- cgit v1.2.3