From dc07dd2ece860ada450a0f80adeaa7aa66926515 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20Talha=20Memi=C5=9F?= <130248799+Buraktalhaa@users.noreply.github.com> Date: Thu, 16 Nov 2023 17:38:15 +0300 Subject: [PATCH] Update functions_burak_talha_memis.py --- Week03/functions_burak_talha_memis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Week03/functions_burak_talha_memis.py b/Week03/functions_burak_talha_memis.py index 9661f63b..a11cbdc5 100644 --- a/Week03/functions_burak_talha_memis.py +++ b/Week03/functions_burak_talha_memis.py @@ -12,7 +12,7 @@ def custom_equation(x: int = 0, y: int = 0 ,/,a: int = 1,b: int = 1 ,*, c: int = :param c: fifth integer with default value 1 (keyword-only) :raises TypeError: if x, y, a, b or c is not an integer """ - if not isinstance(x, int): + if not isinstance(x, int): raise TypeError("x must be an integer") if not isinstance(y, int): raise TypeError("y must be an integer")