mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
If parameter has default value put it before keyword container, or put it before first parameter with default value otherwise.
2 lines
62 B
Python
2 lines
62 B
Python
def foo(baz=None, *args, bar, **kwargs<caret>):
|
|
return bar |