mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +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:
		| @@ -61,7 +61,7 @@ class BRIE(InfoExtractor): | ||||
|                 'title': 'Umweltbewusster Häuslebauer', | ||||
|                 'description': 'md5:d52dae9792d00226348c1dbb13c9bae2', | ||||
|                 'duration': 116, | ||||
|             } | ||||
|             }, | ||||
|         }, | ||||
|         { | ||||
|             'url': 'http://www.br.de/fernsehen/br-alpha/sendungen/kant-fuer-anfaenger/kritik-der-reinen-vernunft/kant-kritik-01-metaphysik100.html', | ||||
| @@ -74,7 +74,7 @@ class BRIE(InfoExtractor): | ||||
|                 'duration': 893, | ||||
|                 'uploader': 'Eva Maria Steimle', | ||||
|                 'upload_date': '20170208', | ||||
|             } | ||||
|             }, | ||||
|         }, | ||||
|     ] | ||||
| 
 | ||||
| @@ -142,7 +142,7 @@ class BRIE(InfoExtractor): | ||||
|                     http_format_info = format_info.copy() | ||||
|                     http_format_info.update({ | ||||
|                         'url': format_url, | ||||
|                         'format_id': 'http-%s' % asset_type, | ||||
|                         'format_id': f'http-{asset_type}', | ||||
|                     }) | ||||
|                     formats.append(http_format_info) | ||||
|                 server_prefix = xpath_text(asset, 'serverPrefix') | ||||
| @@ -151,7 +151,7 @@ class BRIE(InfoExtractor): | ||||
|                     rtmp_format_info.update({ | ||||
|                         'url': server_prefix, | ||||
|                         'play_path': xpath_text(asset, 'fileName'), | ||||
|                         'format_id': 'rtmp-%s' % asset_type, | ||||
|                         'format_id': f'rtmp-{asset_type}', | ||||
|                     }) | ||||
|                     formats.append(rtmp_format_info) | ||||
|         return formats | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 sepro
					sepro