mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 10:14:50 +07:00
Continuation indent is used for function arguments only to avoid structure ambiguity.
6 lines
98 B
Python
6 lines
98 B
Python
def long_method_name(bar, baz): pass
|
|
|
|
|
|
long_method_name("long string one",
|
|
"long string two")
|