Skip to content

Commit 18518d8

Browse files
fix: add return value
1 parent 22530fa commit 18518d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/adventofcode/year_2023/day_05_2023.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def parse_inputs(data: list[str]) -> list[list[str]]:
1212
return [line.split("\n") for line in as_text.split("\n\n")]
1313

1414

15-
def find_locations(data: list[str]) -> None:
15+
def find_locations(data: list[str]) -> int:
1616
"""
1717
Parse input back to str, and split by \n\n to get the
1818
mappings easier

0 commit comments

Comments
 (0)