diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2024-03-10 20:48:44 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2024-03-11 00:52:28 +0530 |
commit | 615a84447e8322720be77a0e64298d7f42848693 (patch) | |
tree | 46c0a3472856badee38ff6ed27d8b2742b348afe /yt_dlp/utils/_legacy.py | |
parent | ed3bb2b0a12c44334e0d09481752dabf2ca1dc13 (diff) |
[cleanup] Misc (#8968)
Authored by: pukkandan, bashonly, seproDev
Diffstat (limited to 'yt_dlp/utils/_legacy.py')
-rw-r--r-- | yt_dlp/utils/_legacy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/utils/_legacy.py b/yt_dlp/utils/_legacy.py index 691fe3de6..a23248bbe 100644 --- a/yt_dlp/utils/_legacy.py +++ b/yt_dlp/utils/_legacy.py @@ -10,14 +10,14 @@ import urllib.request import zlib from ._utils import Popen, decode_base_n, preferredencoding -from .networking import escape_rfc3986 # noqa: F401 -from .networking import normalize_url as escape_url # noqa: F401 from .traversal import traverse_obj from ..dependencies import certifi, websockets from ..networking._helper import make_ssl_context from ..networking._urllib import HTTPHandler # isort: split +from .networking import escape_rfc3986 # noqa: F401 +from .networking import normalize_url as escape_url # noqa: F401 from .networking import random_user_agent, std_headers # noqa: F401 from ..cookies import YoutubeDLCookieJar # noqa: F401 from ..networking._urllib import PUTRequest # noqa: F401 |