pylint-errors

W0301 (unnecessary-semicolon)

:x: Problematic code:

print('Hello');

:heavy_check_mark: Correct code:

print('Hello')

Rationale:

Used when a statement is ended by a semi-colon (“;”), which isn’t necessary (that’s python, not C ;).