From b19cad2bc7176063cba62d48df8b501db6e029d8 Mon Sep 17 00:00:00 2001 From: Tomasz Kramkowski Date: Sat, 4 Dec 2021 13:35:13 +0000 Subject: day 4: remove erroneous type --- 4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/4.py b/4.py index ca63510..11b7382 100644 --- a/4.py +++ b/4.py @@ -2,7 +2,7 @@ from itertools import chain from utils import open_day class Board: - cells: list[int | None] + cells: list[int] width: int height: int col_hits: list[int] -- cgit v1.2.3-54-g00ecf