[cleanup] Fix linter and some typos

* Also remove inconsistent use of `"` in setup.py
This commit is contained in:
pukkandan
2021-04-28 19:59:40 +05:30
parent ef39f8600a
commit e28f1c0ae8
4 changed files with 38 additions and 38 deletions

View File

@@ -2969,8 +2969,8 @@ class YoutubeTabIE(YoutubeBaseInfoExtractor):
post_renderer, lambda x: x['backstageAttachment']['playlistRenderer']['playlistId'], compat_str)
if playlist_id:
yield self.url_result(
'https://www.youtube.com/playlist?list=%s' % playlist_id,
ie=YoutubeTabIE.ie_key(), video_id=playlist_id)
'https://www.youtube.com/playlist?list=%s' % playlist_id,
ie=YoutubeTabIE.ie_key(), video_id=playlist_id)
# inline video links
runs = try_get(post_renderer, lambda x: x['contentText']['runs'], list) or []
for run in runs: