From e23ec4f221e86721000e8d1332ece5778b429d5c Mon Sep 17 00:00:00 2001 From: Chris Dodge Date: Sat, 10 Aug 2013 00:29:17 -0400 Subject: [PATCH] on the new envs configuration file, we need to squelch pylint errors on the from dev import * --- cms/envs/dev_dbperf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cms/envs/dev_dbperf.py b/cms/envs/dev_dbperf.py index b490702d37..2ea131b69e 100644 --- a/cms/envs/dev_dbperf.py +++ b/cms/envs/dev_dbperf.py @@ -1,6 +1,11 @@ """ This configuration is to turn on the Django Toolbar stats for DB access stats, for performance analysis """ + +# We intentionally define lots of variables that aren't used, and +# want to import all variables from base settings files +# pylint: disable=W0401, W0614 + from .dev import * DEBUG_TOOLBAR_PANELS = (