mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[skyitalia] fixed coding conventions
This commit is contained in:
parent
81a20463a4
commit
920ad13673
@ -33,11 +33,11 @@ def _get_formats(self, video_id, token):
|
||||
|
||||
formats = []
|
||||
for q, r in self._RES.items():
|
||||
key = 'web_' + q + '_url'
|
||||
key = 'web_%s_url' % q
|
||||
if key not in video_data:
|
||||
continue
|
||||
formats.append({
|
||||
'url': video_data[key],
|
||||
'url': video_data.get(key),
|
||||
'format_id': q,
|
||||
'width': r[0],
|
||||
'height': r[1]
|
||||
|
Loading…
Reference in New Issue
Block a user