mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
Remove unused imports and clarify variable names
This commit is contained in:
parent
231f76b530
commit
56dd55721c
@ -3,10 +3,6 @@
|
||||
import re
|
||||
|
||||
from .common import InfoExtractor
|
||||
from ..utils import (
|
||||
ExtractorError,
|
||||
unified_strdate,
|
||||
)
|
||||
|
||||
|
||||
class ParliamentLiveUKIE(InfoExtractor):
|
||||
|
@ -1,5 +1,4 @@
|
||||
from .common import InfoExtractor
|
||||
from math import ceil
|
||||
import re
|
||||
|
||||
|
||||
@ -70,7 +69,7 @@ def _real_extract(self, url):
|
||||
'id': username,
|
||||
'entries': [{
|
||||
'_type': 'url',
|
||||
'url': url,
|
||||
'url': eurl,
|
||||
'ie_key': 'Toypics',
|
||||
} for url in urls]
|
||||
} for eurl in urls]
|
||||
}
|
||||
|
@ -58,10 +58,10 @@ def _real_extract(self, url):
|
||||
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…
Reference in New Issue
Block a user