Find why this function does not mark paid rows in the original DataFrame.
Python
def mark_paid(orders):
paid = orders[orders["paid"]]
paid["status"] = "ready"
return orders
def mark_paid(orders):
paid = orders[orders["paid"]]
paid["status"] = "ready"
return orders