diff options
Diffstat (limited to 'examples/excelExpr.py')
-rw-r--r-- | examples/excelExpr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/excelExpr.py b/examples/excelExpr.py index 5c87d93..d7dac90 100644 --- a/examples/excelExpr.py +++ b/examples/excelExpr.py @@ -81,7 +81,7 @@ arithExpr = infixNotation( textOperand = dblQuotedString | cellRef
textExpr = infixNotation(textOperand, [("&", 2, opAssoc.LEFT),])
-expr <<= (arithExpr | textExpr)
+expr <<= arithExpr | textExpr
(EQ + expr).runTests(
|