about summary refs log tree commit diff
path: root/youtube_dl/extractor/itv.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2018-06-21 23:12:40 +0700
committerSergey M․ <dstftw@gmail.com>2018-06-21 23:12:40 +0700
commita4ec45179e554e9b24e32c3c06908804b42a5a9c (patch)
treedb9c1dbca12793120d3bc536dacc56be8a4104b3 /youtube_dl/extractor/itv.py
parent30374f4d40d8c993bf92c5af9b9c073da49fe8b9 (diff)
downloadyoutube-dl-a4ec45179e554e9b24e32c3c06908804b42a5a9c.tar.gz
youtube-dl-a4ec45179e554e9b24e32c3c06908804b42a5a9c.tar.xz
youtube-dl-a4ec45179e554e9b24e32c3c06908804b42a5a9c.zip
[itv] Sort imports
Diffstat (limited to 'youtube_dl/extractor/itv.py')
-rw-r--r--youtube_dl/extractor/itv.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/youtube_dl/extractor/itv.py b/youtube_dl/extractor/itv.py
index 40cffed46..d05a7b68d 100644
--- a/youtube_dl/extractor/itv.py
+++ b/youtube_dl/extractor/itv.py
@@ -13,16 +13,16 @@ from ..compat import (
     compat_etree_register_namespace,
 )
 from ..utils import (
+    determine_ext,
+    ExtractorError,
     extract_attributes,
-    xpath_with_ns,
-    xpath_element,
-    xpath_text,
     int_or_none,
     merge_dicts,
     parse_duration,
     smuggle_url,
-    ExtractorError,
-    determine_ext,
+    xpath_with_ns,
+    xpath_element,
+    xpath_text,
 )