Files
openide/python/testData/formatter/continuationIndentBeforeFunctionParameters.py
ruro c5d3bc5e3f PY-33060 continuation indent for parameters
close #1490

GitOrigin-RevId: c0a7225913b73100dc479a0a3d96026f2a4dd465
2021-02-11 19:41:49 +00:00

13 lines
94 B
Python

def foo_decl1(
a,
b, c,
d,
):
pass
def foo_decl2(
a,
b, c,
d):
pass