mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
9 lines
77 B
Python
9 lines
77 B
Python
def foo(a, d=1):
|
|
"""
|
|
:param a:
|
|
:param d:
|
|
"""
|
|
pass
|
|
|
|
foo("a", d="b")
|