diff options
Diffstat (limited to 'gerbonara/gerber/am_read.py')
-rw-r--r-- | gerbonara/gerber/am_read.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gerbonara/gerber/am_read.py b/gerbonara/gerber/am_read.py index 4aff00b..475caad 100644 --- a/gerbonara/gerber/am_read.py +++ b/gerbonara/gerber/am_read.py @@ -29,7 +29,7 @@ class Token: # compatibility as many gerber writes do use non compliant X MULT = ("x", "X") DIV = "/" - OPERATORS = (ADD, SUB, MULT[0], MULT[1], DIV) + OPERATORS = (ADD, SUB, *MULT, DIV) LEFT_PARENS = "(" RIGHT_PARENS = ")" EQUALS = "=" |