summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2020-04-26 10:38:40 -0500
committerptmcg <ptmcg@austin.rr.com>2020-04-26 10:38:40 -0500
commita43146a5916f62833e397c655609352909fd06d5 (patch)
tree7919c8e44b45e780093e5d3441ec65aaa39e397f
parent203fa36d7ae6b79344e4bf13531b77c09f313793 (diff)
downloadpyparsing-git-a43146a5916f62833e397c655609352909fd06d5.tar.gz
black cleanup
-rw-r--r--examples/excelExpr.py2
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(