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