ruff/crates/ruff_linter/resources/test/fixtures/flake8_pyi/PYI009.py

15 lines
172 B
Python

def bar():
... # OK
def foo():
pass # OK, since we're not in a stub file
class Bar:
... # OK
class Foo:
pass # OK, since we're not in a stub file