fix linting error

This commit is contained in:
merismal34 2022-09-12 03:19:43 +00:00 committed by GitHub
parent f835a62abe
commit f6631360e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2275,7 +2275,7 @@ class InfoExtractor:
if media_type not in ('VIDEO', 'AUDIO'):
return
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)
media_url = media.get('URI')
if media_url: