mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[rtve] PEP8
This commit is contained in:
parent
b665ba6aa6
commit
9c665ab72e
1 changed files with 2 additions and 1 deletions
|
@ -119,7 +119,8 @@ def _get_subtitles(self, video_id, sub_file):
|
|||
subs = self._download_json(
|
||||
sub_file + '.json', video_id,
|
||||
'Downloading subtitles info')['page']['items']
|
||||
return dict((s['lang'], [{'ext': 'vtt', 'url': s['src']}])
|
||||
return dict(
|
||||
(s['lang'], [{'ext': 'vtt', 'url': s['src']}])
|
||||
for s in subs)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue