mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[snagfilms] Don't use '_' as a variable that is used
This commit is contained in:
parent
496ce6b349
commit
28afa6e77a
@ -63,7 +63,7 @@ def _real_extract(self, url):
|
||||
type_ = source.get('type')
|
||||
ext = determine_ext(file_)
|
||||
format_id = source.get('label') or ext
|
||||
if all(_ == 'm3u8' for _ in (type_, ext)):
|
||||
if all(v == 'm3u8' for v in (type_, ext)):
|
||||
formats.extend(self._extract_m3u8_formats(
|
||||
file_, video_id, 'mp4', m3u8_id='hls'))
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user