报告赋值前引用的局部变量。
示例:
x = 0 if x > 10: b = 3 print(b)
IDE 报告
print(b)
的问题。 可能的修复方法是:
x = 0 if x > 10: b = 3 print(b)