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

9 lines
172 B
Python

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