From d0c5e319fb1ee03098623ced530d7cd8ad08a3ce Mon Sep 17 00:00:00 2001 From: Stefan Harmuth Date: Thu, 2 Dec 2021 06:22:33 +0100 Subject: [PATCH] more type annotations --- aoc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aoc.py b/aoc.py index db845b0..731f7e9 100644 --- a/aoc.py +++ b/aoc.py @@ -112,7 +112,7 @@ class AOCDay: return return_array -def printSolution(day, part, solution, test=None, test_case=0, exec_time=None): +def printSolution(day: int, part: int, solution: Any, test: bool = None, test_case: int = 0, exec_time: float = None): if exec_time is None: time_output = "" else: