1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-19 19:52:35 +02:00

[YoutubeDL] Sort imports

This commit is contained in:
Sergey M․ 2016-03-26 19:40:33 +06:00
parent dcf77cf1a7
commit eedb7ba536

View File

@ -39,6 +39,8 @@
compat_urllib_request_DataHandler,
)
from .utils import (
age_restricted,
args_to_str,
ContentTooShortError,
date_from_str,
DateRange,
@ -58,10 +60,12 @@
PagedList,
parse_filesize,
PerRequestProxyHandler,
PostProcessingError,
platform_name,
PostProcessingError,
preferredencoding,
prepend_extension,
render_table,
replace_extension,
SameFileError,
sanitize_filename,
sanitize_path,
@ -76,10 +80,6 @@
write_string,
YoutubeDLCookieProcessor,
YoutubeDLHandler,
prepend_extension,
replace_extension,
args_to_str,
age_restricted,
)
from .cache import Cache
from .extractor import get_info_extractor, gen_extractors