mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-27 05:40:32 +01:00
Implement 2019 day 8
This commit is contained in:
@@ -15,9 +15,9 @@ def main() -> None:
|
||||
day = importlib.import_module(f'.day{args.day:02d}', __package__)
|
||||
|
||||
if args.part2:
|
||||
function = day.part2
|
||||
function = day.part2 # type: ignore
|
||||
else:
|
||||
function = day.part1
|
||||
function = day.part1 # type: ignore
|
||||
|
||||
print(function(args.input))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user