diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2021-12-04 13:35:13 +0000 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2021-12-04 13:35:13 +0000 |
commit | b19cad2bc7176063cba62d48df8b501db6e029d8 (patch) | |
tree | 5e13679b3067a5400be065c44c8c971575072c50 | |
parent | aa6617eda20af145699894fbc588f9bdec1874a5 (diff) | |
download | aoc2021-b19cad2bc7176063cba62d48df8b501db6e029d8.tar.gz aoc2021-b19cad2bc7176063cba62d48df8b501db6e029d8.tar.xz aoc2021-b19cad2bc7176063cba62d48df8b501db6e029d8.zip |
day 4: remove erroneous type
-rw-r--r-- | 4.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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] |