From eacad11a5a69c0705625773438e923d1440d8a7c Mon Sep 17 00:00:00 2001 From: grqx_wsl <173253225+grqx@users.noreply.github.com> Date: Tue, 5 Nov 2024 00:18:14 +1300 Subject: [PATCH] code formatting --- yt_dlp/extractor/boomplay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/boomplay.py b/yt_dlp/extractor/boomplay.py index 0bc7a2864..c5bbcbff2 100644 --- a/yt_dlp/extractor/boomplay.py +++ b/yt_dlp/extractor/boomplay.py @@ -123,7 +123,7 @@ def _extract_page_metadata(cls, webpage, item_id): 'id': item_id, 'title': cls._html_search_regex(r'(?i)]*>([^<]+)', webpage, 'title', default=None), 'thumbnail': cls._html_search_meta(['og:image', 'twitter:image'], - webpage, 'thumbnail', default=''), + webpage, 'thumbnail', default=''), 'like_count': parse_count(cls._get_element_by_class_and_tag('btn_favorite', 'button', metadata_div)), 'repost_count': parse_count(cls._get_element_by_class_and_tag('btn_share', 'button', metadata_div)), 'comment_count': parse_count(cls._get_element_by_class_and_tag('btn_comment', 'button', metadata_div)),