pylint-errors

C0303 (trailing-whitespace)

:x: Problematic code:

print('Hello')    # some whitespaces here

:heavy_check_mark: Correct code:

print('Hello')

Rationale:

Used when there is whitespace between the end of a line and the newline.