mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
Unify replacing container usages, the only difference in cases was only presence of default value. GitOrigin-RevId: 17d7aee3be0797956b00fda8d18953243d76297b
6 lines
124 B
Python
6 lines
124 B
Python
def foo(bar1=22, **kwargs):
|
|
a = bar1
|
|
b = bar1
|
|
|
|
c = kwargs.get("bar2", 22)
|
|
d = kwargs.get("bar2", default=23) |