diff options
Diffstat (limited to 'tests/postgres_tests/models.py')
| -rw-r--r-- | tests/postgres_tests/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/postgres_tests/models.py b/tests/postgres_tests/models.py index a77fc4b152..367a32be74 100644 --- a/tests/postgres_tests/models.py +++ b/tests/postgres_tests/models.py @@ -146,7 +146,7 @@ class JSONModel(models.Model): class ArrayFieldSubclass(ArrayField): def __init__(self, *args, **kwargs): - super(ArrayFieldSubclass, self).__init__(models.IntegerField()) + super().__init__(models.IntegerField()) class AggregateTestModel(models.Model): |
