From 979f61abd322507aafced9627702362e541ec34e Mon Sep 17 00:00:00 2001 From: Taoup Date: Tue, 7 Jan 2020 09:34:15 +0800 Subject: [PATCH] Simplified model's Options.add_field() a bit. --- django/db/models/options.py | 6 +++--- 1 file 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,