pylint --list-msgs, v0.26.0

This file was automatically generated. Check out pylint-shortcodes's main page for more information.

Shortcode Number Message PyLint Messages Link Details
Shortcode Number Message PyLint Messages Link Details
W0101 UNREACHABLE Unreachable code W0101 Used when there is some code behind a "return" or "raise" statement, which will never be accessed.
W0333 BACKTICK Use of the `` operator W0333 Used when the deprecated "``" (backtick) operator is used instead of the str() function.
W0404 REIMPORTED Reimport %r (imported line %s) W0404 Used when a module is reimported multiple times.