ruff/crates/ruff_linter/resources/test/fixtures/flake8_pyi/PYI048.py
2023-09-20 08:38:27 +02:00

27 lines
307 B
Python

def bar():
... # OK
def bar():
pass # OK
def bar():
"""oof""" # OK
def oof(): # ERROR PYI048
"""oof"""
print("foo")
def foo(): # ERROR PYI048
"""foo"""
print("foo")
print("foo")
def buzz(): # ERROR PYI048
print("fizz")
print("buzz")
print("test")