Skip to content

Commit

Permalink
Apply flake8-implicit-str-concat rule ISC001 (#13115)
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriPapadopoulos authored Nov 13, 2024
1 parent a2db696 commit 041326f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sphinx/builders/epub3.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class NavPoint(NamedTuple):
'|[\ufdf0-\ufffd]|[\U00010000-\U000effff]'
)
_xml_name_char = (
_xml_name_start_char + r'\-|\.' '|[0-9]|\u00b7|[\u0300-\u036f]|[\u203f-\u2040]'
_xml_name_start_char + r'\-|\.|[0-9]|\u00b7|[\u0300-\u036f]|[\u203f-\u2040]'
)
_XML_NAME_PATTERN = re.compile(f'({_xml_name_start_char})({_xml_name_char})*')

Expand Down

0 comments on commit 041326f

Please sign in to comment.