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

14 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