Reports local variables referenced before assignment.

Example:

x = 0
if x > 10:
    b = 3
print(b)

The IDE reports a problem for print(b). A possible fix is:

x = 0
if x > 10:
    b = 3
    print(b)