diff options
author | Sergey M․ <dstftw@gmail.com> | 2020-06-05 23:35:57 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2020-06-05 23:35:57 +0700 |
commit | c8b232cc48858713d9f5c88300ffcbd022d740b2 (patch) | |
tree | f32789fa29baabf29d3007efece45a39fa8bfcd6 /youtube_dl/extractor/brightcove.py | |
parent | b4eb0bc7bd2524a63e3a6441fe82a6cfd8ebc365 (diff) |
[brightcove] Sort imports
Diffstat (limited to 'youtube_dl/extractor/brightcove.py')
-rw-r--r-- | youtube_dl/extractor/brightcove.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py index 462815317..5c22a730d 100644 --- a/youtube_dl/extractor/brightcove.py +++ b/youtube_dl/extractor/brightcove.py @@ -5,34 +5,34 @@ import base64 import re import struct -from .common import InfoExtractor from .adobepass import AdobePassIE +from .common import InfoExtractor from ..compat import ( compat_etree_fromstring, + compat_HTTPError, compat_parse_qs, compat_urllib_parse_urlparse, compat_urlparse, compat_xml_parse_error, - compat_HTTPError, ) from ..utils import ( - ExtractorError, + clean_html, extract_attributes, + ExtractorError, find_xpath_attr, fix_xml_ampersands, float_or_none, - js_to_json, int_or_none, + js_to_json, + mimetype2ext, parse_iso8601, smuggle_url, str_or_none, unescapeHTML, unsmuggle_url, + UnsupportedError, update_url_query, url_or_none, - clean_html, - mimetype2ext, - UnsupportedError, ) |