diff --git a/calc.py b/calc.py index 0a3cc44..aa57294 100644 --- a/calc.py +++ b/calc.py @@ -1,7 +1,7 @@ from helpers import * calc_users = open_json_file("calc", []) -math_operators = ["+", "-", "*", "/", "&", "|"] +math_operators = ["+", "-", "*", "/", "&", "|", ">", "<", "~", "%"] ignore_operators = ["**", "&&", "||"] # ** may be too intensive, the others cause syntax errors calc_perm = "utils.calc"