chibisov/drf-extensions

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

DawsonLey opened this issue · 1 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