mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-16 21:33:19 +00:00
fix another indent
This commit is contained in:
parent
800906c9ce
commit
276347381c
|
@ -3331,9 +3331,14 @@ def _extract_comment(self, view_model, entity, parent=None):
|
|||
})
|
||||
|
||||
info['author_url'] = urljoin(
|
||||
'https://www.youtube.com', traverse_obj(entity_payload,
|
||||
('author', 'channelCommand', 'innertubeCommand', 'browseEndpoint', 'canonicalBaseUrl'),
|
||||
expected_type=str, get_all=False))
|
||||
'https://www.youtube.com',
|
||||
traverse_obj(entity_payload,
|
||||
('author',
|
||||
'channelCommand',
|
||||
'innertubeCommand',
|
||||
'browseEndpoint',
|
||||
'canonicalBaseUrl'),
|
||||
expected_type=str, get_all=False))
|
||||
|
||||
author_is_uploader = traverse_obj(entity_payload, ('author', 'isCreator'))
|
||||
if author_is_uploader is not None:
|
||||
|
|
Loading…
Reference in a new issue