pyupgrade: Reformat with --py36-plus.
This includes mainly fixes of string literals using f-strings or .format(...), as well as unpacking of list comprehensions.
This commit is contained in:
		
							parent
							
								
									e27ac0ddbe
								
							
						
					
					
						commit
						9ce7c52a10
					
				
					 78 changed files with 356 additions and 389 deletions
				
			
		|  | @ -37,7 +37,7 @@ def commit_notice_destination(path: str, changelist: int) -> Optional[Dict[str, | |||
|         directory = dirs[2] | ||||
| 
 | ||||
|     if directory not in ["evil-master-plan", "my-super-secret-repository"]: | ||||
|         return dict(stream="%s-commits" % (directory,), subject=path) | ||||
|         return dict(stream=f"{directory}-commits", subject=path) | ||||
| 
 | ||||
|     # Return None for cases where you don't want a notice sent | ||||
|     return None | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 PIG208
						PIG208