cannot import name 'ListDestroyModelMixin' from 'rest_framework_extensions.mixins'
DawsonLey opened this issue · 1 comments
DawsonLey commented
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
OskarPersson commented
Fixed in #260