summaryrefslogtreecommitdiff
path: root/tests/model_inheritance/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model_inheritance/models.py')
-rw-r--r--tests/model_inheritance/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_inheritance/models.py b/tests/model_inheritance/models.py
index 62003f032e..86b1cddb8c 100644
--- a/tests/model_inheritance/models.py
+++ b/tests/model_inheritance/models.py
@@ -160,7 +160,7 @@ class NamedURL(models.Model):
class Mixin:
def __init__(self):
self.other_attr = 1
- super(Mixin, self).__init__()
+ super().__init__()
class MixinModel(models.Model, Mixin):