1
0
Fork 0

[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
commit e28f1c0ae8
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
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: