FLASK SQLALCHEMY. commit n'enregistre pas les modifications

#When updating a JSON(B) attribute I 
#think you might need to flag it as modified
from sqlalchemy.orm.attributes import flag_modified

custObj.contextjason = { 'foo':'bar', 'so':'be it'}
flag_modified(custObj, "contextjason")
db.session.commit()
Bug Killer