We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d1c0cc commit e0ad915Copy full SHA for e0ad915
regexploit/ast/categories.py
@@ -48,7 +48,7 @@ def contains(self, literal: int) -> bool:
48
49
50
def list_category(category, full_unicode: bool = False):
51
- if (cached := CATS.get(category)) :
+ if cached := CATS.get(category):
52
yield from cached
53
for data in range((sys.maxunicode + 1) if full_unicode else 256):
54
c = chr(data)
0 commit comments