1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-06 10:59:36 +02:00

[skyitalia] fixed coding conventions

This commit is contained in:
nixxo 2020-10-29 13:37:07 +01:00
parent 81a20463a4
commit 920ad13673

View File

@ -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]