Fix W504 and disable W503 (closes #20863)
[youtube-dl] / youtube_dl / extractor / vevo.py
index 4aa72cbd1d4106f79ac6d8152f76b83412fbe246..232e05816074d7bf53b5fb07c1f3eb882fd4a1ac 100644 (file)
@@ -275,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: