Remove an entity from the collection, firing mutation events.
(
self, item: Any, initiator: Optional[AttributeEventToken] = None
)
| 542 | return self._data()._sa_remover |
| 543 | |
| 544 | def remove_with_event( |
| 545 | self, item: Any, initiator: Optional[AttributeEventToken] = None |
| 546 | ) -> None: |
| 547 | """Remove an entity from the collection, firing mutation events.""" |
| 548 | self._data()._sa_remover(item, _sa_initiator=initiator) |
| 549 | |
| 550 | def remove_without_event(self, item: Any) -> None: |
| 551 | """Remove an entity from the collection, firing no events.""" |