mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-12-21 08:35:40 +07:00
[npo] Remove unused import
This commit is contained in:
@@ -4,13 +4,12 @@
|
||||
|
||||
from .common import InfoExtractor
|
||||
from ..utils import (
|
||||
unified_strdate,
|
||||
fix_xml_ampersands,
|
||||
parse_duration,
|
||||
qualities,
|
||||
strip_jsonp,
|
||||
unified_strdate,
|
||||
url_basename,
|
||||
fix_xml_ampersands,
|
||||
determine_ext,
|
||||
)
|
||||
|
||||
|
||||
@@ -136,7 +135,7 @@ def _get_info(self, video_id):
|
||||
stream_url = stream.get('url')
|
||||
if not stream_url:
|
||||
continue
|
||||
if not '.asf' in stream_url:
|
||||
if '.asf' not in stream_url:
|
||||
formats.append({
|
||||
'url': stream_url,
|
||||
'quality': stream.get('kwaliteit'),
|
||||
|
||||
Reference in New Issue
Block a user