summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2017-01-29 18:06:26 +0100
committerClaude Paroz <claude@2xlibre.net>2017-01-29 18:06:26 +0100
commit068cd6036651c7564dd3e465fbea458b75d7244a (patch)
tree0d8764175660285a575bd23e40092e52b019856d /tests
parentf5bf11c72b267d717dd4379ec80f9f7c5185f80f (diff)
Removed unneeded parentheses in class definitions
Diffstat (limited to 'tests')
-rw-r--r--tests/model_fields/test_imagefield.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_fields/test_imagefield.py b/tests/model_fields/test_imagefield.py
index 96fa8c839b..3a86d3daf5 100644
--- a/tests/model_fields/test_imagefield.py
+++ b/tests/model_fields/test_imagefield.py
@@ -21,7 +21,7 @@ if Image:
from .models import temp_storage_dir
else:
# Pillow not available, create dummy classes (tests will be skipped anyway)
- class Person():
+ class Person:
pass
PersonWithHeight = PersonWithHeightAndWidth = PersonDimensionsFirst = Person
PersonTwoImages = Person