mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
14 lines
232 B
Python
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
|