Skip to content

Commit e0ad915

Browse files
committedMay 7, 2021
Fix CI due to upgraded linter
The formatter 'black' has a new version. Hooray.
1 parent 9d1c0cc commit e0ad915

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎regexploit/ast/categories.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def contains(self, literal: int) -> bool:
4848

4949

5050
def list_category(category, full_unicode: bool = False):
51-
if (cached := CATS.get(category)) :
51+
if cached := CATS.get(category):
5252
yield from cached
5353
for data in range((sys.maxunicode + 1) if full_unicode else 256):
5454
c = chr(data)

0 commit comments

Comments
 (0)