Remove unused imports and clarify variable names
This commit is contained in:
parent
231f76b530
commit
56dd55721c
3 changed files with 4 additions and 9 deletions
|
@ -58,10 +58,10 @@ class XTubeIE(InfoExtractor):
|
|||
QUALITIES = ['3gp', 'mp4_normal', 'mp4_high', 'flv', 'mp4_ultra', 'mp4_720', 'mp4_1080']
|
||||
formats = [
|
||||
{
|
||||
'url': url,
|
||||
'url': furl,
|
||||
'format_id': format_id,
|
||||
'preference': QUALITIES.index(format_id) if format_id in QUALITIES else -1,
|
||||
} for format_id, url in player_quality_option.items()
|
||||
} for format_id, furl in player_quality_option.items()
|
||||
]
|
||||
self._sort_formats(formats)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue