summaryrefslogtreecommitdiff
path: root/django/db/models/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/db/models/utils.py')
-rw-r--r--django/db/models/utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/django/db/models/utils.py b/django/db/models/utils.py
index 949c528469..5521f3cca5 100644
--- a/django/db/models/utils.py
+++ b/django/db/models/utils.py
@@ -46,7 +46,7 @@ def create_namedtuple_class(*names):
return unpickle_named_row, (names, tuple(self))
return type(
- 'Row',
- (namedtuple('Row', names),),
- {'__reduce__': __reduce__, '__slots__': ()},
+ "Row",
+ (namedtuple("Row", names),),
+ {"__reduce__": __reduce__, "__slots__": ()},
)