pylint-errors

C0103 (invalid-name)

:x: Problematic code:

aaa = 24

:heavy_check_mark: Correct code:

HOURS = 24

Rationale:

Used when the name doesn’t conform to naming rules associated to its type (constant, variable, class…).