Skip to content

Commit 6486854

Browse files
committed
aoc Reader formatting
1 parent 0f2bd23 commit 6486854

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

aoc/models/reader.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ def get_test_input(day: int, is_raw: bool, part_num: int) -> List[str]:
6868
where `XX` is the zero-padded day number and `YY` is the zero-padded part number.
6969
"""
7070
file_path = os.path.join(
71-
Reader.PROJECT_ROOT, f"tests/data/day{day:02d}/test_{part_num:02d}_input.txt"
71+
Reader.PROJECT_ROOT,
72+
f"tests/data/day{day:02d}/test_{part_num:02d}_input.txt",
7273
)
7374
with open(file_path, "r") as file:
7475
return [line.strip("\n") if is_raw else line.strip() for line in file.readlines()]

0 commit comments

Comments
 (0)