From 784798ee425e44f9193a71ad84d4609c10904472 Mon Sep 17 00:00:00 2001 From: KevinED11 Date: Wed, 28 Jun 2023 13:53:30 -0700 Subject: [PATCH] reto #26-python --- Retos/Reto #26 - TESTING [Media]/python/KevinED11.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,