Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -226,7 +226,7 @@ def process_command(command):
|
|
| 226 |
order_details = ", ".join([f"{item[0]} x{item[2]} (₹{item[1] * item[2]})" for item in cart])
|
| 227 |
total = sum(item[1] * item[2] for item in cart)
|
| 228 |
cart.clear()
|
| 229 |
-
return f"Your final order is: {order_details}. Total price: ₹{total}. Thank you for visiting Biryani Hub!"
|
| 230 |
else:
|
| 231 |
return "Your cart is empty. Please add items before placing the final order."
|
| 232 |
|
|
|
|
| 226 |
order_details = ", ".join([f"{item[0]} x{item[2]} (₹{item[1] * item[2]})" for item in cart])
|
| 227 |
total = sum(item[1] * item[2] for item in cart)
|
| 228 |
cart.clear()
|
| 229 |
+
return f"Your final order is: {order_details}. Total price: ₹{total}. Your order will arrive soon, Thank you for visiting Biryani Hub!"
|
| 230 |
else:
|
| 231 |
return "Your cart is empty. Please add items before placing the final order."
|
| 232 |
|