def commit(self): """ Commits all chains that were created during the session :return """ for table in self.__tables: table.commit()
def commit(self): """Commit changes to the tables.""" for table in self.__tables: table.commit()