Fix imports and general cleanup
[youtube-dl] / youtube_dl / extractor / yahoo.py
index 0fdb122436d9b7e158a706cd1048630e252d5666..031226f2764032b9f1af16f5c9d74188a89cdc05 100644 (file)
@@ -6,11 +6,13 @@ import json
 import re
 
 from .common import InfoExtractor, SearchInfoExtractor
-from ..utils import (
-    ExtractorError,
+from ..compat import (
     compat_urllib_parse,
     compat_urlparse,
+)
+from ..utils import (
     clean_html,
+    ExtractorError,
     int_or_none,
 )