mirror of
https://github.com/blackjack4494/yt-dlc.git
synced 2025-01-04 22:41:22 +00:00
[soundcloud] flake8
This commit is contained in:
parent
169bd46bdc
commit
4ae68091bb
1 changed files with 3 additions and 3 deletions
|
@ -311,7 +311,7 @@ class VikiIE(VikiBaseIE):
|
||||||
stream_ids = []
|
stream_ids = []
|
||||||
for f in formats:
|
for f in formats:
|
||||||
s_id = f.get('stream_id')
|
s_id = f.get('stream_id')
|
||||||
if s_id != None:
|
if s_id is not None:
|
||||||
stream_ids.append(s_id)
|
stream_ids.append(s_id)
|
||||||
|
|
||||||
subtitles = {}
|
subtitles = {}
|
||||||
|
|
Loading…
Reference in a new issue