summaryrefslogtreecommitdiff
path: root/tests/base
diff options
context:
space:
mode:
authorRamin Farajpour Cami <ramin.blackhat@gmail.com>2016-11-12 20:41:23 +0330
committerTim Graham <timograham@gmail.com>2016-11-14 12:30:46 -0500
commit967be82443b5640d61608a89897d8ce2bc44fa54 (patch)
tree9905e1156e27aa3d1226da3dde1223a5087b0d55 /tests/base
parent6072de727f0ffa7bf0aa67aadba5d4589561974d (diff)
Fixed E305 flake8 warnings.
Diffstat (limited to 'tests/base')
-rw-r--r--tests/base/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/base/models.py b/tests/base/models.py
index f84d64df53..4a8a2ffd81 100644
--- a/tests/base/models.py
+++ b/tests/base/models.py
@@ -16,6 +16,7 @@ class CustomBaseModel(models.base.ModelBase):
class MyModel(six.with_metaclass(CustomBaseModel, models.Model)):
"""Model subclass with a custom base using six.with_metaclass."""
+
# This is done to ensure that for Python2 only, defining metaclasses
# still does not fail to create the model.