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

8 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