From 6a8f3eeee72a0e9c93ff534083ff50458cf7c37e Mon Sep 17 00:00:00 2001 From: Aliaksei Urbanski Date: Tue, 27 Aug 2019 19:49:39 +0300 Subject: [PATCH] Relax the pylint rule for constants (#108) These changes follow up the "Fix and improve tests for Python != 3.7" PR. --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index f0ae6e1ad..4b33f1142 100644 --- a/.pylintrc +++ b/.pylintrc @@ -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.