mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
14 lines
294 B
Python
14 lines
294 B
Python
def long_function_name(**kwargs): ...
|
|
|
|
def example_function():
|
|
result = extracted()
|
|
processed = result.upper()
|
|
return processed
|
|
|
|
|
|
def extracted():
|
|
return long_function_name(
|
|
first_argument="value1",
|
|
second_argument="value2",
|
|
third_argument="value3"
|
|
) |