From b68f55af3a20589fc2b0beea4b86cc154d57caf2 Mon Sep 17 00:00:00 2001 From: Heiko Ludwig Date: Sun, 3 Dec 2023 09:48:24 +0100 Subject: [PATCH] clean up program template --- program.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/program.py b/program.py index 21bfa48..054b4c2 100755 --- a/program.py +++ b/program.py @@ -8,8 +8,7 @@ def get_lines(filename: str) -> list: def main(): - lines = get_lines("test-input.txt") - # lines = get_lines("input.txt") + lines = get_lines("input.txt") if __name__ == '__main__':