Skip to content

Commit 1b294fa

Browse files
committed
fix filenaming
1 parent 2f76840 commit 1b294fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run_day.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def main():
2323

2424
args = parser.parse_args()
2525
day_zero_padded_str = str(args.day).zfill(2)
26-
input_file = f"inputs/{args.year}/{day_zero_padded_str}.dat"
26+
input_file = f"inputs/year_{args.year}/{day_zero_padded_str}.dat"
2727

2828
day_module = f"advent_of_code.year_{args.year}.day_{day_zero_padded_str}"
2929
print(day_module)

0 commit comments

Comments
 (0)