Skip to content

Commit

Permalink
reto mouredev#26-python
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinED11 committed Jun 28, 2023
1 parent f770c4f commit 784798e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Retos/Reto #26 - TESTING [Media]/python/KevinED11.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

def is_friday_13(year: int, month: int) -> bool:
if not isinstance(year, int) or not isinstance(month, int):
raise TypeError("Invalid type, enter a valid integer number")
raise TypeError("Invalid year or month, enter a valid integer number")

return date(year=year,
month=month,
Expand Down

0 comments on commit 784798e

Please sign in to comment.