From 86ecc929b26fa3930298fa2fcef3212e209f16ae Mon Sep 17 00:00:00 2001 From: youngcoder45 Date: Wed, 6 May 2026 09:20:07 +0530 Subject: [PATCH] Fix bug in counting --- cogs/counting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/counting.py b/cogs/counting.py index 334544c..063855a 100644 --- a/cogs/counting.py +++ b/cogs/counting.py @@ -292,7 +292,7 @@ def safe_eval(self, expr): "cos": math.cos, "tan": math.tan, "asin": math.asin, - "acos": math.acos + "acos": math.acos, "atan": math.atan, "degrees": math.degrees, "radians": math.radians,