Fix W504 and disable W503 (closes #20863)
[youtube-dl] / youtube_dl / extractor / vevo.py
index 9434cd585aa9c900c19a572e8c410f581443776c..232e05816074d7bf53b5fb07c1f3eb882fd4a1ac 100644 (file)
@@ -12,7 +12,6 @@ from ..compat import (
 from ..utils import (
     ExtractorError,
     int_or_none,
-    sanitized_Request,
     parse_iso8601,
 )
 
@@ -155,19 +154,17 @@ class VevoIE(VevoBaseIE):
     }
 
     def _initialize_api(self, video_id):
-        post_data = json.dumps({
-            'client_id': 'SPupX1tvqFEopQ1YS6SS',
-            'grant_type': 'urn:vevo:params:oauth:grant-type:anonymous',
-        }).encode('utf-8')
-        headers = {
-            'Content-Type': 'application/json',
-        }
-        req = sanitized_Request(
-            'https://accounts.vevo.com/token', post_data, headers)
         webpage = self._download_webpage(
-            req, None,
+            'https://accounts.vevo.com/token', None,
             note='Retrieving oauth token',
-            errnote='Unable to retrieve oauth token')
+            errnote='Unable to retrieve oauth token',
+            data=json.dumps({
+                'client_id': 'SPupX1tvqFEopQ1YS6SS',
+                'grant_type': 'urn:vevo:params:oauth:grant-type:anonymous',
+            }).encode('utf-8'),
+            headers={
+                'Content-Type': 'application/json',
+            })
 
         if re.search(r'(?i)THIS PAGE IS CURRENTLY UNAVAILABLE IN YOUR REGION', webpage):
             self.raise_geo_restricted(
@@ -203,7 +200,7 @@ class VevoIE(VevoBaseIE):
             fatal=False)
 
         # Some videos are only available via webpage (e.g.
-        # https://github.com/rg3/youtube-dl/issues/9366)
+        # https://github.com/ytdl-org/youtube-dl/issues/9366)
         if not video_versions:
             webpage = self._download_webpage(url, video_id)
             json_data = self._extract_json(webpage, video_id)
@@ -278,8 +275,8 @@ class VevoIE(VevoBaseIE):
 
         genres = video_info.get('genres')
         genre = (
-            genres[0] if genres and isinstance(genres, list) and
-            isinstance(genres[0], compat_str) else None)
+            genres[0] if genres and isinstance(genres, list)
+            and isinstance(genres[0], compat_str) else None)
 
         is_explicit = video_info.get('isExplicit')
         if is_explicit is True: