pylint-errors

W0106 (expression-not-assigned)

:x: Problematic code:

foo = True
bar = True
foo and bar

:heavy_check_mark: Correct code:

foo = True
bar = True
print(foo and bar)

Rationale:

Used when an expression that is not a function call is assigned to nothing. Probably something else was intended.