Files
ruff/resources/test/fixtures/flake8_quotes/docstring_doubles_function.py
2022-10-28 17:52:11 -04:00

23 lines
406 B
Python

def foo():
"""function without params, single line docstring"""
""" not a docstring"""
return
def foo2():
"""
function without params, multiline docstring
"""
""" not a docstring"""
return
def fun_with_params_no_docstring(a, b="""
not a
""" """docstring"""):
pass
def fun_with_params_no_docstring2(a, b=c[foo():], c=\
""" not a docstring """):
pass