1
0
Fork 0
mirror of https://github.com/blackjack4494/yt-dlc.git synced 2024-12-21 23:33:10 +00: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 @@ class SkyItaliaBaseIE(InfoExtractor):
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]