瀏覽代碼

[itv] Sort imports

Sergey M․ 7 年之前
父節點
當前提交
a4ec45179e
共有 1 個文件被更改,包括 5 次插入5 次删除
  1. 5 5
      youtube_dl/extractor/itv.py

+ 5 - 5
youtube_dl/extractor/itv.py

@@ -13,16 +13,16 @@ from ..compat import (
     compat_etree_register_namespace,
     compat_etree_register_namespace,
 )
 )
 from ..utils import (
 from ..utils import (
+    determine_ext,
+    ExtractorError,
     extract_attributes,
     extract_attributes,
-    xpath_with_ns,
-    xpath_element,
-    xpath_text,
     int_or_none,
     int_or_none,
     merge_dicts,
     merge_dicts,
     parse_duration,
     parse_duration,
     smuggle_url,
     smuggle_url,
-    ExtractorError,
-    determine_ext,
+    xpath_with_ns,
+    xpath_element,
+    xpath_text,
 )
 )