chibisov / drf-extensions

DRF-extensions is a collection of custom extensions for Django REST Framework

Home Page:http://chibisov.github.io/drf-extensions/docs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cannot import name 'ListDestroyModelMixin' from 'rest_framework_extensions.mixins'

DawsonLey opened this issue · comments

ImportError: cannot import name 'ListDestroyModelMixin' from 'rest_framework_extensions.mixins'

Solved by changing from rest_framework_extensions.bulk_operations.mixins import ListUpdateModelMixin

to

from rest_framework_extensions.bulk_operations.mixins import ListUpdateModelMixin, ListDestroyModelMixin

in rest_framework_extensions/mixins.py file

Fixed in #260