summaryrefslogtreecommitdiff
path: root/tests/from_db_value
diff options
context:
space:
mode:
Diffstat (limited to 'tests/from_db_value')
-rw-r--r--tests/from_db_value/models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/from_db_value/models.py b/tests/from_db_value/models.py
index fae9565a02..2f2304ff0a 100644
--- a/tests/from_db_value/models.py
+++ b/tests/from_db_value/models.py
@@ -7,7 +7,7 @@ class Cash(decimal.Decimal):
currency = 'USD'
def __str__(self):
- s = super(Cash, self).__str__(self)
+ s = super().__str__(self)
return '%s %s' % (s, self.currency)
@@ -15,7 +15,7 @@ class CashField(models.DecimalField):
def __init__(self, **kwargs):
kwargs['max_digits'] = 20
kwargs['decimal_places'] = 2
- super(CashField, self).__init__(**kwargs)
+ super().__init__(**kwargs)
def from_db_value(self, value, expression, connection, context):
cash = Cash(value)