mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	bpo-38693: Prefer f-strings in importlib.resources (importlib_resources 5.0.6). (GH-26387)
Automerge-Triggered-By: GH:jaraco
This commit is contained in:
		
							parent
							
								
									6cc800d363
								
							
						
					
					
						commit
						f6fbdb90ee
					
				
					 6 changed files with 10 additions and 12 deletions
				
			
		|  | @ -31,7 +31,7 @@ def normalize_path(path): | |||
|     str_path = str(path) | ||||
|     parent, file_name = os.path.split(str_path) | ||||
|     if parent: | ||||
|         raise ValueError('{!r} must be only a file name'.format(path)) | ||||
|         raise ValueError(f'{path!r} must be only a file name') | ||||
|     return file_name | ||||
| 
 | ||||
| 
 | ||||
|  | @ -65,7 +65,7 @@ def get_package(package): | |||
|     """ | ||||
|     resolved = resolve(package) | ||||
|     if wrap_spec(resolved).submodule_search_locations is None: | ||||
|         raise TypeError('{!r} is not a package'.format(package)) | ||||
|         raise TypeError(f'{package!r} is not a package') | ||||
|     return resolved | ||||
| 
 | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Jason R. Coombs
						Jason R. Coombs