Skip to content

Commit 16ec75f

Browse files
committed
fix sphinx
1 parent 7cdc107 commit 16ec75f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

w3lib/url.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -364,12 +364,12 @@ def any_to_uri(uri_or_path: str) -> str:
364364
).encode()
365365
)
366366

367-
_ParseDataURIResult = namedtuple(
368-
"_ParseDataURIResult", "media_type media_type_parameters data"
367+
ParseDataURIResult = namedtuple(
368+
"ParseDataURIResult", "media_type media_type_parameters data"
369369
)
370370

371371

372-
def parse_data_uri(uri: StrOrBytes) -> _ParseDataURIResult:
372+
def parse_data_uri(uri: StrOrBytes) -> ParseDataURIResult:
373373
"""
374374
375375
Parse a data: URI, returning a 3-tuple of media type, dictionary of media

0 commit comments

Comments
 (0)