From 4e3b8e5fb8942f80b17cfe0219773a92bd5b0fe0 Mon Sep 17 00:00:00 2001 From: David <31293924+dreadn0ught@users.noreply.github.com> Date: Thu, 20 Mar 2025 17:39:43 +0000 Subject: [PATCH] Update operations.py --- python/simple_math/simple_math/operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/simple_math/simple_math/operations.py b/python/simple_math/simple_math/operations.py index 8aff697..b2356cd 100644 --- a/python/simple_math/simple_math/operations.py +++ b/python/simple_math/simple_math/operations.py @@ -11,5 +11,5 @@ def multiply(a, b): def divide(a, b): if b == 0: - raise ValueError("Cannot divide by zero") + raise ValueError("Cannot divide by zero!") return a / b