From 39688d491bfb12e0aea1648998d668aa683c41d6 Mon Sep 17 00:00:00 2001 From: Giovanni M Guidini <99758426+giovanni-guidini@users.noreply.github.com> Date: Mon, 24 Nov 2025 16:33:15 +0100 Subject: [PATCH] a wild bug appears --- app/calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/calculator.py b/app/calculator.py index e769ea61..c95d9d77 100644 --- a/app/calculator.py +++ b/app/calculator.py @@ -18,4 +18,4 @@ def abs(x): return x if x >= 0 else -x def pow(x, y): - return x**y + return x*y