fix another indent

pull/9775/head
jakeogh 2024-04-24 00:07:55 -07:00
rodzic 800906c9ce
commit 276347381c
1 zmienionych plików z 8 dodań i 3 usunięć

Wyświetl plik

@ -3331,9 +3331,14 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
})
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: