Relax the pylint rule for constants (#108)

These changes follow up the "Fix and improve tests for Python != 3.7" PR.
This commit is contained in:
Aliaksei Urbanski
2019-08-27 19:49:39 +03:00
committed by Reiley Yang
parent 009de09c20
commit 6a8f3eeee7

View File

@ -323,7 +323,7 @@ class-naming-style=PascalCase
#class-rgx=
# Naming style matching correct constant names.
const-naming-style=UPPER_CASE
const-naming-style=any
# Regular expression matching correct constant names. Overrides const-naming-
# style.