mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-12-18 07:05:41 +07: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:
@@ -13,7 +13,7 @@ class KaraoketvIE(InfoExtractor):
|
||||
'params': {
|
||||
# rtmp download
|
||||
'skip_download': True,
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
def _real_extract(self, url):
|
||||
@@ -45,7 +45,7 @@ def _real_extract(self, url):
|
||||
servers = ('wowzail.video-cdn.com:80/vodcdn', )
|
||||
|
||||
formats = [{
|
||||
'url': 'rtmp://%s' % server if not server.startswith('rtmp') else server,
|
||||
'url': f'rtmp://{server}' if not server.startswith('rtmp') else server,
|
||||
'play_path': play_path,
|
||||
'app': 'vodcdn',
|
||||
'page_url': video_cdn_url,
|
||||
|
||||
Reference in New Issue
Block a user