We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86ea553 commit 4fdf9abCopy full SHA for 4fdf9ab
solutions/day09.py
@@ -24,7 +24,7 @@ class Block:
24
filled_files: List[int] = None # Only used for space blocks
25
26
def __post_init__(self) -> None:
27
- """Initialize empty filled_files list if None."""
+ """Initialize empty filled_files list if `None`."""
28
if self.filled_files is None:
29
self.filled_files = []
30
0 commit comments