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

24 lines
408 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