summaryrefslogtreecommitdiff
path: root/pyparsing/core.py
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2021-09-08 17:35:16 -0500
committerptmcg <ptmcg@austin.rr.com>2021-09-08 17:35:16 -0500
commit6b51ff7faf0cb32170b415341725ddfc8d7b10c7 (patch)
tree26ca619ab9d098d30668cd784abfb258e526d44c /pyparsing/core.py
parentd714f45d927a9712bbb93c8eb4f63b2fff7ad89a (diff)
downloadpyparsing-git-6b51ff7faf0cb32170b415341725ddfc8d7b10c7.tar.gz
The blackening
Diffstat (limited to 'pyparsing/core.py')
-rw-r--r--pyparsing/core.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/pyparsing/core.py b/pyparsing/core.py
index b9e63af..95fa18f 100644
--- a/pyparsing/core.py
+++ b/pyparsing/core.py
@@ -2606,9 +2606,7 @@ class Word(Token):
self.mayIndexError = False
self.asKeyword = asKeyword
- if " " not in self.initChars | self.bodyChars and (
- min == 1 and exact == 0
- ):
+ if " " not in self.initChars | self.bodyChars and (min == 1 and exact == 0):
if self.bodyChars == self.initChars:
if max == 0:
repeat = "+"