unnecessary-semicolon / W0301ΒΆ
Message emitted:
Unnecessary semicolon
Description:
Used when a statement is ended by a semi-colon (";"), which isn't necessary (that's python, not C ;).
Problematic code:
print("Hello World!"); # [unnecessary-semicolon]
Correct code:
print("Hello World!")
Created by the format checker.