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

15 lines
232 B
Python

"""foo""" # OK, not in stub
def foo():
"""foo""" # OK, doc strings are allowed in non-stubs
class Bar:
"""bar""" # OK, doc strings are allowed in non-stubs
def bar():
x = 1
"""foo""" # OK, not a doc string