mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-20 04:58:32 +02:00
Remove redundant re.UNICODE flag
This commit is contained in:
parent
f2bf1ff900
commit
edb0d8efa1
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ class Entry:
|
|||
|
||||
@staticmethod
|
||||
def tag_regex(tagsymbols):
|
||||
pattern = fr'(?u)(?<!\S)([{tagsymbols}][-+*#/\w]+)'
|
||||
pattern = fr'(?<!\S)([{tagsymbols}][-+*#/\w]+)'
|
||||
return re.compile(pattern)
|
||||
|
||||
def _parse_tags(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue