mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-08-15 16:49:11 +03:00
[cleanup] Fix linter in 96fccc101f
This commit is contained in:
@@ -23,7 +23,7 @@ class DashSegmentsFD(FragmentFD):
|
||||
'test', False) else info_dict['fragments']
|
||||
|
||||
real_downloader = get_suitable_downloader(
|
||||
info_dict, self.params, None, protocol='dash_frag_urls', to_stdout=(filename== '-'))
|
||||
info_dict, self.params, None, protocol='dash_frag_urls', to_stdout=(filename == '-'))
|
||||
|
||||
ctx = {
|
||||
'filename': filename,
|
||||
|
||||
@@ -87,7 +87,7 @@ class HlsFD(FragmentFD):
|
||||
real_downloader = None # Packing the fragments is not currently supported for external downloader
|
||||
else:
|
||||
real_downloader = get_suitable_downloader(
|
||||
info_dict, self.params, None, protocol='m3u8_frag_urls', to_stdout=(filename== '-'))
|
||||
info_dict, self.params, None, protocol='m3u8_frag_urls', to_stdout=(filename == '-'))
|
||||
if real_downloader and not real_downloader.supports_manifest(s):
|
||||
real_downloader = None
|
||||
if real_downloader:
|
||||
|
||||
Reference in New Issue
Block a user