Skip to content

Commit

Permalink
fix(source/torridge): fix date parts unpacking
Browse files Browse the repository at this point in the history
I don't know how I managed to do break it between the tests passing and committing the source, but apparently I did.
  • Loading branch information
tigattack authored and 5ila5 committed Mar 6, 2025
1 parent 832a0c9 commit ead2918
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def fetch(self):
if len(date_parts) < 3:
raise ValueError("Unexpected date format")

bin_day_num, bin_month = date_parts
_, bin_day_num, bin_month = date_parts
if bin_month not in MONTHS:
raise ValueError(f"Unknown month: {bin_month}")

Expand Down

0 comments on commit ead2918

Please sign in to comment.