mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 19:52:07 +07:00
5 lines
191 B
Python
5 lines
191 B
Python
def f(xs):
|
|
# vs is unbound
|
|
return [(k, v) for v in <warning descr="Local variable 'vs' might be referenced before assignment">vs</warning>
|
|
for k, vs in xs.items()]
|