invalid-class-name (N801)
Added in v0.0.77 · Related issues · View source
Derived from the pep8-naming linter.
What it does
Checks for class names that do not follow the CamelCase convention.
Why is this bad?
PEP 8 recommends the use of the CapWords (or CamelCase) convention
for class names:
Class names should normally use the
CapWordsconvention.The naming convention for functions may be used instead in cases where the interface is documented and used primarily as a callable.
Note that there is a separate convention for builtin names: most builtin names are single words (or two words run together), with the
CapWordsconvention used only for exception names and builtin constants.
Example
Use instead: