I am storing a bunch of patent data in a MySQL database and interacting with it via SQLAlchemy. I have a collection inside the Patent class that represents the list of assi
SQLAlchemy collections support list-like append/remove operations.
p.assignees.remove(c)
This should remove c form p.assignees without deleting c from database.
c
p.assignees