summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/db/models/options.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/django/db/models/options.py b/django/db/models/options.py
index baa0c875b2..a375f6ba1d 100644
--- a/django/db/models/options.py
+++ b/django/db/models/options.py
@@ -1,6 +1,6 @@
+import bisect
import copy
import inspect
-from bisect import bisect
from collections import defaultdict
from django.apps import apps
@@ -271,9 +271,9 @@ class Options:
if private:
self.private_fields.append(field)
elif field.is_relation and field.many_to_many:
- self.local_many_to_many.insert(bisect(self.local_many_to_many, field), field)
+ bisect.insort(self.local_many_to_many, field)
else:
- self.local_fields.insert(bisect(self.local_fields, field), field)
+ bisect.insort(self.local_fields, field)
self.setup_pk(field)
# If the field being added is a relation to another known field,