From 6b51ff7faf0cb32170b415341725ddfc8d7b10c7 Mon Sep 17 00:00:00 2001 From: ptmcg Date: Wed, 8 Sep 2021 17:35:16 -0500 Subject: The blackening --- pyparsing/core.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'pyparsing/core.py') 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 = "+" -- cgit v1.2.1