mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-03-17 04:10:24 +00:00
Added missing imports for UpdateOrCreateMixin
This commit is contained in:
parent
7b03f1d001
commit
21371e3ea4
1 changed files with 2 additions and 1 deletions
|
|
@ -2,10 +2,11 @@ from types import ClassType
|
|||
import warnings
|
||||
|
||||
from django.contrib.contenttypes.models import ContentType
|
||||
from django.db import models, transaction
|
||||
from django.db import IntegrityError, models, transaction
|
||||
from django.db.models.fields.related import OneToOneField
|
||||
from django.db.models.manager import Manager
|
||||
from django.db.models.query import QuerySet
|
||||
import sys
|
||||
|
||||
|
||||
class InheritanceQuerySet(QuerySet):
|
||||
|
|
|
|||
Loading…
Reference in a new issue