mirror of
				https://github.com/astral-sh/ruff.git
				synced 2025-10-31 12:05:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			154 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			154 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| if a and not a:
 | |
|     pass
 | |
| 
 | |
| if (a and not a) and b:
 | |
|     pass
 | |
| 
 | |
| if (a and not a) or b:
 | |
|     pass
 | |
| 
 | |
| if a:
 | |
|     pass
 | |
| 
 | |
| if not a:
 | |
|     pass
 | |
| 
 | |
| if a and not b:
 | |
|     pass
 | 
