pylint-errors
W0612 (unused-variable)
Problematic code:
x
=
1
y
=
None
print
(
x
)
Correct code:
x
=
1
y
=
None
print
(
x
,
y
)
Rationale:
Used when a variable is defined but not used.
Related resources:
Issue Tracker