[skyitalia] fixed coding conventions

This commit is contained in:
nixxo 2020-10-29 13:37:07 +01:00
parent 81a20463a4
commit 920ad13673
1 changed files with 2 additions and 2 deletions

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]