pylint-errors

C0326 (bad-whitespace)

:x: Problematic code:

print(input(  ))

:heavy_check_mark: Correct code:

print(input())

Rationale:

Used when a wrong number of spaces is used around an operator, bracket or block opener.