mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
If parameter has default value put it before keyword container, or put it before first parameter with default value otherwise.
2 lines
67 B
Python
2 lines
67 B
Python
def foo(baz=None, *args, **kwargs<caret>):
|
|
return kwargs["bar"] |