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(bar2=22, **kwargs):
|
|
a = kwargs.get("bar1", 22)
|
|
b = kwargs.get("bar1", default=23)
|
|
|
|
c = bar2
|
|
d = bar2 |