Formatting

This commit is contained in:
IamTheFij 2023-12-02 14:14:37 -08:00
parent 548a009d30
commit 5229f3fb54
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,4 @@
from pathlib import Path
from dataclasses import dataclass
from typing import TypedDict
@ -25,6 +24,7 @@ class Game:
def possible(self, bag: Grab) -> bool:
return all(grab_in_bag(bag, grab) for grab in self.grabs)
def parse_line(line: str) -> Game:
line = line.strip()