ruff/crates/ruff_linter/resources/test/fixtures/pydocstyle/D400_415.py
2024-09-20 11:05:26 +00:00

20 lines
No EOL
333 B
Python

def f():
"Here's a line ending in a question mark?"
...
def f():
"""Here's a line ending in an exclamation mark!"""
...
def f():
"""Here's a line ending in a colon:"""
...
def f():
"""Here's a line ending in a semi colon;"""
...
def f():
"""Here's a line ending with a whitespace """
...