From adedc310729f7b1ca182b7b38d7d47550ae3e89d Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 10 Oct 2013 11:07:48 -0400 Subject: Fixed "redefinition of unused 'foo' from line X" pyflakes warnings. --- tests/base/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/base') diff --git a/tests/base/models.py b/tests/base/models.py index 98d379337c..23efdf9d5b 100644 --- a/tests/base/models.py +++ b/tests/base/models.py @@ -20,6 +20,6 @@ class MyModel(six.with_metaclass(CustomBaseModel, models.Model)): # still does not fail to create the model. if six.PY2: - class MyModel(models.Model): + class MyPython2Model(models.Model): """Model subclass with a custom base using __metaclass__.""" __metaclass__ = CustomBaseModel -- cgit v1.3