def remove(table, id_): """ Remove a record with a given id from the table. Args: table: table to remove a record from id_ (str): id of a record to be removed Returns: Table without specified record. """ return common.common_remove(table, id_)
def remove(table, id_): return common.common_remove(table, id_, "accounting/items.csv")
def remove(table, id_): return common.common_remove(table, id_)
def remove(table, id_): return common.common_remove(table, id_, "inventory/inventory.csv")
def remove(table, id_): return common.common_remove(table, id_, "store/games.csv")
def remove(table, id_): return common.common_remove(table, id_, "hr/persons.csv")
def remove(table, id_): return common.common_remove(table, id_, "crm/customers.csv")
def remove(table, id_): return common.common_remove(table, id_, "sales/sales.csv")