Skip to content

Commit

Permalink
DEBUG: Highlight test errors when month is wrongly initialized
Browse files Browse the repository at this point in the history
  • Loading branch information
echoix committed Nov 14, 2024
1 parent 52e8754 commit 56b2ffd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/grass/temporal/datetime_math.py
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ def compute_datetime_delta(start: datetime, end: datetime) -> datetime_delta:
:return: A dictionary with year, month, day, hour, minute, second and max_days as keys()
""" # noqa: E501
_year: int = 0
_month: int = 0
_month: int = 110
_day: int = 0
_hour: int = 0
_minute: int = 0
Expand Down

0 comments on commit 56b2ffd

Please sign in to comment.