Update queryset.py

This commit is contained in:
collerek
2022-01-14 17:06:22 +01:00
committed by GitHub
parent 8dd49356df
commit a587ad463d

View File

@ -1135,7 +1135,7 @@ class QuerySet(Generic[T]):
for obj in objects: for obj in objects:
obj.set_save_status(True) obj.set_save_status(True)
await obj.signals.post_bulk_update.send( await self.model_cls.Meta.signals.post_bulk_update.send(
sender=self.__class__, instances=objects sender=self.model_cls, instances=objects
) )