From 72cae3039d32ee51712cbbeacb368987ea984553 Mon Sep 17 00:00:00 2001 From: Adam Harwell Date: Mon, 5 May 2014 17:37:11 -0500 Subject: [PATCH] Remove duplicate module-rgx line in .pylintrc The correct neutron configuration will no longer be overwritten by the old quantum configuration. Change-Id: I4923ad4e35a5053966edb307587c72c0b684d149 Closes-Bug: 1316334 --- .pylintrc | 1 - 1 file changed, 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 021856b92b..87fbcd3b3d 100644 --- a/.pylintrc +++ b/.pylintrc @@ -25,7 +25,6 @@ method-rgx=([a-z_][a-z0-9_]{2,50}|setUp|tearDown)$ # Module names matching neutron-* are ok (files in bin/) module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+)|(neutron-[a-z0-9_-]+))$ -module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+)|(quantum-[a-z0-9_-]+))$ # Don't require docstrings on tests. no-docstring-rgx=((__.*__)|([tT]est.*)|setUp|tearDown)$