diff --git a/Retos/Reto #26 - TESTING [Media]/python/KevinED11.py b/Retos/Reto #26 - TESTING [Media]/python/KevinED11.py index 2dad39cdb8..80cc09b6c8 100644 --- a/Retos/Reto #26 - TESTING [Media]/python/KevinED11.py +++ b/Retos/Reto #26 - TESTING [Media]/python/KevinED11.py @@ -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,