code consistency

This commit is contained in:
Matthew 2020-11-15 09:34:59 +13:00
parent 0366ae8756
commit 9da76d30de
1 changed files with 2 additions and 2 deletions

View File

@ -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: