From 5de7f5fbb08e4a6d79ba9969a30e941700fcf85c Mon Sep 17 00:00:00 2001 From: David <31293924+dreadn0ught@users.noreply.github.com> Date: Tue, 25 Mar 2025 15:47:10 +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