From 7f4fc9f23fdbc7774a1339b155ae4557cfc842c8 Mon Sep 17 00:00:00 2001 From: Raphael Roberts Date: Thu, 20 May 2021 00:14:28 -0500 Subject: [PATCH] Sort SPECIAL_VARS --- c2logic/consts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c2logic/consts.py b/c2logic/consts.py index 3d8ae53..0f8bb5c 100644 --- a/c2logic/consts.py +++ b/c2logic/consts.py @@ -34,4 +34,4 @@ func_binary_ops = ["pow", "max", "min", "angle", "len", "land", "idiv", "strictE func_unary_ops = ["abs", "log", "log10", "sin", "cos", "tan", "floor", "ceil", "sqrt", "rand"] binary_ops.update(dict(zip(func_binary_ops, func_binary_ops))) unary_ops.update(dict(zip(func_unary_ops, func_unary_ops))) -SPECIAL_VARS = ("links", "ipt", "counter", "time", "unit", "tick") +SPECIAL_VARS = ('counter', 'ipt', 'links', 'tick', 'time', 'unit')