Skip to content

Commit

Permalink
fix: add return value
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelblijleven committed Dec 9, 2023
1 parent 22530fa commit 18518d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/adventofcode/year_2023/day_05_2023.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def parse_inputs(data: list[str]) -> list[list[str]]:
return [line.split("\n") for line in as_text.split("\n\n")]


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

0 comments on commit 18518d8

Please sign in to comment.