We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22ba36a commit 69c11d8Copy full SHA for 69c11d8
4 files changed
aoc/models/reader.py
@@ -60,7 +60,7 @@ def get_puzzle_input(cls, day: int, *, raw: bool = False) -> str | list[str]:
60
-------
61
The puzzle input as a string or list of strings
62
"""
63
- file_path = cls.PROJECT_ROOT / "data" / f"day{day:02d}.txt"
+ file_path = cls.PROJECT_ROOT / "data" / f"day{day:02d}" / "puzzle_input.txt"
64
65
with Path.open(file_path) as f:
66
content = f.read()
0 commit comments