From 70a95fa264e796a65ba60ef5b0c4452e1d002952 Mon Sep 17 00:00:00 2001 From: kijai <40791699+kijai@users.noreply.github.com> Date: Sun, 21 Dec 2025 12:05:29 +0200 Subject: [PATCH] Update nodes.py --- nodes/nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/nodes.py b/nodes/nodes.py index 95a9164..33701fd 100644 --- a/nodes/nodes.py +++ b/nodes/nodes.py @@ -2729,7 +2729,7 @@ class SimpleCalculatorKJ: # Allowed operations allowed_operators = {ast.Add: operator.add, ast.Sub: operator.sub, ast.Mult: operator.mul, ast.Div: operator.truediv, - ast.Pow: operator.pow, ast.USub: operator.neg, ast.UAdd: operator.pos, ast.LShift: operator.lshift, ast.RShift, operator.rshift, + ast.Pow: operator.pow, ast.USub: operator.neg, ast.UAdd: operator.pos, ast.LShift: operator.lshift, ast.RShift: operator.rshift, } # Allowed functions