def delete(cls, table, where_items): cmd = delete(table=table, where=where_items) cls.execute(cmd)
def delete(cls, table, where_items): """Simple delete wrapper""" cmd = delete(table=table, where=where_items) cls.execute(cmd)
def delete(cls, table, where_items): cmd = delete( table = table, where = where_items ) cls.execute(cmd)