Constant name doesn't conform to UPPER_CASE naming stylepylint(invalid-name)
Solution 1:
Include comment
# pylint: disable=C0103
in your code file (per How do I tell PyLint "it's a variable, not a constant" to stop message C0103?).
(No word yet on how to disable that error message system-wide.)