diff options
author | ptmcg <ptmcg@austin.rr.com> | 2020-04-26 10:38:40 -0500 |
---|---|---|
committer | ptmcg <ptmcg@austin.rr.com> | 2020-04-26 10:38:40 -0500 |
commit | a43146a5916f62833e397c655609352909fd06d5 (patch) | |
tree | 7919c8e44b45e780093e5d3441ec65aaa39e397f | |
parent | 203fa36d7ae6b79344e4bf13531b77c09f313793 (diff) | |
download | pyparsing-git-a43146a5916f62833e397c655609352909fd06d5.tar.gz |
black cleanup
-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(
|