1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-12-07 08:45:24 +00:00

[cleanup] Add more ruff rules (#10149)

Authored by: seproDev

Reviewed-by: bashonly <88596187+bashonly@users.noreply.github.com>
Reviewed-by: Simon Sawicki <contact@grub4k.xyz>
This commit is contained in:
sepro
2024-06-12 01:09:58 +02:00
committed by GitHub
parent db50f19d76
commit add96eb9f8
915 changed files with 7027 additions and 7246 deletions

View File

@@ -37,7 +37,7 @@ class ChaturbateIE(InfoExtractor):
video_id = self._match_id(url)
webpage = self._download_webpage(
'https://chaturbate.com/%s/' % video_id, video_id,
f'https://chaturbate.com/{video_id}/', video_id,
headers=self.geo_verification_headers())
found_m3u8_urls = []
@@ -85,7 +85,7 @@ class ChaturbateIE(InfoExtractor):
formats = []
for m3u8_url in m3u8_urls:
for known_id in ('fast', 'slow'):
if '_%s' % known_id in m3u8_url:
if f'_{known_id}' in m3u8_url:
m3u8_id = known_id
break
else:
@@ -99,7 +99,7 @@ class ChaturbateIE(InfoExtractor):
return {
'id': video_id,
'title': video_id,
'thumbnail': 'https://roomimg.stream.highwebmedia.com/ri/%s.jpg' % video_id,
'thumbnail': f'https://roomimg.stream.highwebmedia.com/ri/{video_id}.jpg',
'age_limit': self._rta_search(webpage),
'is_live': True,
'formats': formats,