mirror of https://github.com/blackjack4494/yt-dlc
code consistency
This commit is contained in:
parent
0366ae8756
commit
9da76d30de
|
@ -3343,7 +3343,7 @@ class YoutubeSearchIE(SearchInfoExtractor, YoutubePlaylistBaseInfoExtractor):
|
||||||
# changing the index location of videos and token.
|
# changing the index location of videos and token.
|
||||||
# So we search through all entries till we find them.
|
# So we search through all entries till we find them.
|
||||||
for index, isr in enumerate(slr_contents):
|
for index, isr in enumerate(slr_contents):
|
||||||
if len(isr_contents) == 0:
|
if not isr_contents:
|
||||||
isr_contents = try_get(
|
isr_contents = try_get(
|
||||||
slr_contents,
|
slr_contents,
|
||||||
(lambda x: x[index]['itemSectionRenderer']['contents']),
|
(lambda x: x[index]['itemSectionRenderer']['contents']),
|
||||||
|
@ -3360,7 +3360,7 @@ class YoutubeSearchIE(SearchInfoExtractor, YoutubePlaylistBaseInfoExtractor):
|
||||||
lambda x: x[index]['continuationItemRenderer']['continuationEndpoint']['continuationCommand'][
|
lambda x: x[index]['continuationItemRenderer']['continuationEndpoint']['continuationCommand'][
|
||||||
'token'],
|
'token'],
|
||||||
compat_str)
|
compat_str)
|
||||||
if continuation_token is not None and isr_contents != []:
|
if continuation_token is not None and isr_contents:
|
||||||
break
|
break
|
||||||
|
|
||||||
if not isr_contents:
|
if not isr_contents:
|
||||||
|
|
Loading…
Reference in New Issue