mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
GitOrigin-RevId: d48d96ba69345ec949272b56635c2efc8b3b433c
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"
|
|
) |