mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-09-16 07:42:07 +00:00
[cleanup] Add more ruff rules (#10149)
Authored by: seproDev Reviewed-by: bashonly <[email protected]> Reviewed-by: Simon Sawicki <[email protected]>
This commit is contained in:
@@ -27,7 +27,7 @@ class CJSWIE(InfoExtractor):
|
||||
def _real_extract(self, url):
|
||||
mobj = self._match_valid_url(url)
|
||||
program, episode_id = mobj.group('program', 'id')
|
||||
audio_id = '%s/%s' % (program, episode_id)
|
||||
audio_id = f'{program}/{episode_id}'
|
||||
|
||||
webpage = self._download_webpage(url, episode_id)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user