mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 20:39:40 +07:00
10 lines
259 B
Python
10 lines
259 B
Python
def long_function_name(**kwargs): ...
|
|
|
|
def example_function():
|
|
result = long_function_name(
|
|
first_argument="value1",
|
|
second_argument="value2",
|
|
third_argument="value3"<caret>
|
|
)
|
|
processed = result.upper()
|
|
return processed |