Fix imports and general cleanup
[youtube-dl] / youtube_dl / extractor / vk.py
index ca6b0d5b3369c53b7e06715ea5a56fd338d71e41..542e9198ac0e5a9470ad5e16717bf9ca006050af 100644 (file)
@@ -5,14 +5,17 @@ import re
 import json
 
 from .common import InfoExtractor
+from ..compat import (
+    compat_str,
+    compat_urllib_parse,
+    compat_urllib_request,
+)
 from ..utils import (
     ExtractorError,
-    compat_urllib_request,
-    compat_urllib_parse,
-    compat_str,
+    orderedSet,
     unescapeHTML,
     unified_strdate,
-    orderedSet)
+)
 
 
 class VKIE(InfoExtractor):