Spaces:
Sleeping
Sleeping
Update app.py
Browse filesfixed indentations + doctrings
app.py
CHANGED
|
@@ -139,6 +139,7 @@ def generate_packing_list(destination: str, weather_summary: str, trip_days: int
|
|
| 139 |
clothes.extend(["• Swimsuit (x2)", "• Beach towel", "• Flip-flops/sandals", "• Beach bag"])
|
| 140 |
elif trip_type == "mountain":
|
| 141 |
clothes.extend(["• Sturdy hiking shoes", "• Moisture-wicking base layers", "• Trekking socks (x3)", "• Daypack"])
|
|
|
|
| 142 |
return (
|
| 143 |
f"🎒 SMART PACKING LIST ({trip_days}-day {trip_type} trip to {destination})\n"
|
| 144 |
"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n"
|
|
|
|
| 139 |
clothes.extend(["• Swimsuit (x2)", "• Beach towel", "• Flip-flops/sandals", "• Beach bag"])
|
| 140 |
elif trip_type == "mountain":
|
| 141 |
clothes.extend(["• Sturdy hiking shoes", "• Moisture-wicking base layers", "• Trekking socks (x3)", "• Daypack"])
|
| 142 |
+
|
| 143 |
return (
|
| 144 |
f"🎒 SMART PACKING LIST ({trip_days}-day {trip_type} trip to {destination})\n"
|
| 145 |
"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n"
|