From 481328cc19b35b601a66d27df1e00a07c26158d8 Mon Sep 17 00:00:00 2001 From: JChris246 Date: Sun, 16 Mar 2025 03:04:00 -0400 Subject: [PATCH] fix: correct lint errors --- yt_dlp/extractor/fc2.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yt_dlp/extractor/fc2.py b/yt_dlp/extractor/fc2.py index 671a2cee51..f97483c4e4 100644 --- a/yt_dlp/extractor/fc2.py +++ b/yt_dlp/extractor/fc2.py @@ -24,11 +24,11 @@ class FC2IE(InfoExtractor): 'id': '20121103kUan1KHs', 'title': 'Boxing again with Puff', 'ext': 'mp4', - 'thumbnail': 're:^https?://.+.jpg?(?:\\d+)?' + 'thumbnail': 're:^https?://.+.jpg?(?:\\d+)?', }, 'file_minsize': 633, 'params': { - 'skip_download': True + 'skip_download': True, }, }, { 'url': 'https://video.fc2.com/content/20121129xMeT3Czt', @@ -115,7 +115,7 @@ def _real_extract(self, url): vid_url = urljoin('https://video.fc2.com/', vid_url) if vidplaylist.get('type') == '1': - formats = self._extract_m3u8_formats(vid_url, video_id, 'mp4',) + formats = self._extract_m3u8_formats(vid_url, video_id, 'mp4') else: formats = [{ 'url': vid_url,