In pycharm, I would like to disable the following inspection warn: "Local variable 'xxx' might be referenced before assignment" but I can't find it in settings/inspections.
PS: This is not a duplicate, as I understand this warn. I am just asking how to disable it in pycharm.
Update: Please find below an example of what I mean
cond = True
def add1(x):
return x+1
if cond:
a = 1
if cond:
b = add1(a) # the warn is on the 'a'
Solution:
"Unbound local variable" inspection. (cf. Lomtrur answer below)
Place the cursor immediately after a
. It should have a colored background or be underlined to show that this is where the warning is. Then press Alt+Enter
to open the context menu. This should show you what the inspection is and also give the option to disable it. (PyCharm 2018.2.5 Professional Edition)