mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
code consistency
This commit is contained in:
parent
0366ae8756
commit
9da76d30de
1 changed files with 2 additions and 2 deletions
|
@ -3343,7 +3343,7 @@ def _entries(self, query, n):
|
|||
# changing the index location of videos and token.
|
||||
# So we search through all entries till we find them.
|
||||
for index, isr in enumerate(slr_contents):
|
||||
if len(isr_contents) == 0:
|
||||
if not isr_contents:
|
||||
isr_contents = try_get(
|
||||
slr_contents,
|
||||
(lambda x: x[index]['itemSectionRenderer']['contents']),
|
||||
|
@ -3360,7 +3360,7 @@ def _entries(self, query, n):
|
|||
lambda x: x[index]['continuationItemRenderer']['continuationEndpoint']['continuationCommand'][
|
||||
'token'],
|
||||
compat_str)
|
||||
if continuation_token is not None and isr_contents != []:
|
||||
if continuation_token is not None and isr_contents:
|
||||
break
|
||||
|
||||
if not isr_contents:
|
||||
|
|
Loading…
Reference in a new issue