diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-09-22 05:50:11 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-09-22 05:50:11 +0530 |
commit | d806c9fd97052b05f978d28d6a8d5bf81ef54fcf (patch) | |
tree | 9526da61a3e9ff1faa01ecafb7cb4285d15ab0c3 /yt_dlp/downloader/external.py | |
parent | 5e3f2f8fc4cdf600b5030c70478274bdb4dcf4c6 (diff) | |
download | hypervideo-pre-d806c9fd97052b05f978d28d6a8d5bf81ef54fcf.tar.lz hypervideo-pre-d806c9fd97052b05f978d28d6a8d5bf81ef54fcf.tar.xz hypervideo-pre-d806c9fd97052b05f978d28d6a8d5bf81ef54fcf.zip |
[docs,cleanup] Add deprecation warning in docs
for some counter intuitive behaviour that may be removed in future.
and fix linter
Diffstat (limited to 'yt_dlp/downloader/external.py')
-rw-r--r-- | yt_dlp/downloader/external.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/yt_dlp/downloader/external.py b/yt_dlp/downloader/external.py index 025eb38cb..9c1229cf6 100644 --- a/yt_dlp/downloader/external.py +++ b/yt_dlp/downloader/external.py @@ -7,11 +7,9 @@ import sys import time from .fragment import FragmentFD -from ..aes import aes_cbc_decrypt_bytes from ..compat import ( compat_setenv, compat_str, - compat_struct_pack, ) from ..postprocessor.ffmpeg import FFmpegPostProcessor, EXT_TO_OUT_FORMATS from ..utils import ( @@ -25,7 +23,6 @@ from ..utils import ( check_executable, is_outdated_version, process_communicate_or_kill, - sanitized_Request, sanitize_open, ) |