mirror of
				https://github.com/astral-sh/ruff.git
				synced 2025-10-30 03:27:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			102 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| def f():
 | |
|     "Here's a line without a period"
 | |
|     ...
 | |
| 
 | |
| 
 | |
| def f():
 | |
|     """Here's a line without a period"""
 | |
|     ...
 | |
| 
 | |
| 
 | |
| def f():
 | |
|     """
 | |
|     Here's a line without a period,
 | |
|     but here's the next line
 | |
|     """
 | |
|     ...
 | |
| 
 | |
| 
 | |
| def f():
 | |
|     """Here's a line without a period"""
 | |
|     ...
 | |
| 
 | |
| 
 | |
| def f():
 | |
|     """
 | |
|     Here's a line without a period,
 | |
|     but here's the next line"""
 | |
|     ...
 | |
| 
 | |
| 
 | |
| def f():
 | |
|     """
 | |
|     Here's a line without a period,
 | |
|     but here's the next line with trailing space """
 | |
|     ...
 | |
| 
 | |
| 
 | |
| def f():
 | |
|     r"Here's a line without a period"
 | |
|     ...
 | |
| 
 | |
| 
 | |
| def f():
 | |
|     r"""Here's a line without a period"""
 | |
|     ...
 | |
| 
 | |
| 
 | |
| def f():
 | |
|     r"""
 | |
|     Here's a line without a period,
 | |
|     but here's the next line
 | |
|     """
 | |
|     ...
 | |
| 
 | |
| 
 | |
| def f():
 | |
|     r"""Here's a line without a period"""
 | |
|     ...
 | |
| 
 | |
| 
 | |
| def f():
 | |
|     r"""
 | |
|     Here's a line without a period,
 | |
|     but here's the next line"""
 | |
|     ...
 | |
| 
 | |
| 
 | |
| def f():
 | |
|     r"""
 | |
|     Here's a line without a period,
 | |
|     but here's the next line with trailing space """
 | |
|     ...
 | |
| 
 | |
| 
 | |
| def f(rounds: list[int], number: int) -> bool:
 | |
|     """
 | |
|     :param rounds: list - rounds played.
 | |
|     :param number: int - round number.
 | |
|     :return:  bool - was the round played?
 | |
|     """
 | |
|     return number in rounds
 | |
| 
 | |
| 
 | |
| def f(rounds: list[int], number: int) -> bool:
 | |
|     """
 | |
|     Args:
 | |
|         rounds (list): rounds played.
 | |
|         number (int): round number.
 | |
| 
 | |
|     Returns:
 | |
|         bool: was the round played?
 | |
|     """
 | |
|     return number in rounds
 | |
| 
 | |
| 
 | |
| def f():
 | |
|     """
 | |
|     My example
 | |
|     ==========
 | |
| 
 | |
|     My example explanation
 | |
|     """
 | 
