mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-12 20:23:11 +00:00
fix linting error
This commit is contained in:
parent
f835a62abe
commit
f6631360e8
@ -2275,7 +2275,7 @@ class InfoExtractor:
|
|||||||
if media_type not in ('VIDEO', 'AUDIO'):
|
if media_type not in ('VIDEO', 'AUDIO'):
|
||||||
return
|
return
|
||||||
channels = media.get('CHANNELS')
|
channels = media.get('CHANNELS')
|
||||||
if not channels is None and str(channels).isdigit():
|
if channels is not None and str(channels).isdigit():
|
||||||
channels = int(channels)
|
channels = int(channels)
|
||||||
media_url = media.get('URI')
|
media_url = media.get('URI')
|
||||||
if media_url:
|
if media_url:
|
||||||
|
Loading…
Reference in New Issue
Block a user