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

14 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