mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 19:52:07 +07:00
7 lines
189 B
Python
7 lines
189 B
Python
def f(c, x):
|
|
if c:
|
|
import os.path
|
|
else:
|
|
pass
|
|
return <warning descr="Local variable 'os' might be referenced before assignment">os</warning>.path.isfile(x) #fail
|