Skip to content

syntax-error (E999)#

Derived from the pycodestyle linter.

What it does#

Checks for code that contains syntax errors.

Why is this bad?#

Code with syntax errors cannot be executed. Such errors are likely a mistake.

Example#

x =

Use instead:

x = 1

References#