mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
Removed redundant keyword arguments in parameters section, cosmetics. GitOrigin-RevId: 213132671cc844eb31a168c4e8a17af169d1aac2
12 lines
160 B
Python
12 lines
160 B
Python
def func(x, y, z):
|
|
"""
|
|
Parameters
|
|
----------
|
|
x : int
|
|
y : str
|
|
|
|
Other Parameters
|
|
----------------
|
|
z : int
|
|
"""
|
|
pass |