pylint-errors

W0612 (unused-variable)

:x: Problematic code:

x = 1
y = None
print(x)

:heavy_check_mark: Correct code:

x = 1
y = None
print(x, y)

Rationale:

Used when a variable is defined but not used.