pylint-errors

C0325 (superfluous-parens)

:x: Problematic code:

x = input()
y = input()
if (x == y):
    pass

:heavy_check_mark: Correct code:

x = input()
y = input()
if x == y:
    pass

Rationale:

Used when a single item in parentheses follows an if, for, or other keyword.