aboutsummaryrefslogtreecommitdiffstats
path: root/tests/__init__.py
diff options
context:
space:
mode:
authorAymeric Augustin2013-11-09 21:24:30 +0100
committerAymeric Augustin2013-11-10 10:43:45 +0100
commitb61c85f2f03d2e879319b15af238f6ee34fbe1a4 (patch)
treeb0ce5c782592b5a2a6b7188195dea5ecbdd064f8 /tests/__init__.py
parentad31833f901267f4233337ded8e610dfc81d9e6a (diff)
downloaddjango-debug-toolbar-b61c85f2f03d2e879319b15af238f6ee34fbe1a4.tar.bz2
Fix PEP 8 violations.
Diffstat (limited to 'tests/__init__.py')
-rw-r--r--tests/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/__init__.py b/tests/__init__.py
index 178fd1c..47fba24 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -1,7 +1,7 @@
# Refresh the debug toolbar's configuration when overriding settings.
from debug_toolbar.utils.settings import CONFIG, CONFIG_DEFAULTS
-from debug_toolbar.toolbar.loader import load_panel_classes, panel_classes
+from debug_toolbar.toolbar.loader import load_panel_classes, panel_classes # noqa
from django.dispatch import receiver
from django.test.signals import setting_changed
@@ -18,5 +18,5 @@ def update_toolbar_config(**kwargs):
def update_toolbar_panels(**kwargs):
if kwargs['setting'] == 'DEBUG_TOOLBAR_PANELS':
global panel_classes
- panel_classes = []
+ panel_classes = [] # noqa
load_panel_classes()