From 276347381c3a1908964ee3216c340f3f4ab0e826 Mon Sep 17 00:00:00 2001 From: jakeogh Date: Wed, 24 Apr 2024 00:07:55 -0700 Subject: [PATCH] fix another indent --- yt_dlp/extractor/youtube.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/yt_dlp/extractor/youtube.py b/yt_dlp/extractor/youtube.py index 582862d65..fcf852bd7 100644 --- a/yt_dlp/extractor/youtube.py +++ b/yt_dlp/extractor/youtube.py @@ -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: