示例#1
0
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")
示例#3
0
def remove(table, id_):
    return common.common_remove(table, id_)
def remove(table, id_):
    return common.common_remove(table, id_, "inventory/inventory.csv")
示例#5
0
def remove(table, id_):
    return common.common_remove(table, id_, "store/games.csv")
示例#6
0
def remove(table, id_):
    return common.common_remove(table, id_, "hr/persons.csv")
示例#7
0
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")