Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -28,9 +28,9 @@ def get_today_dataframe():
|
|
| 28 |
return get_dataframe(hopsworks_tomorrow_path)
|
| 29 |
|
| 30 |
def get_dataframe_of(day):
|
| 31 |
-
if (day == 'today'):
|
| 32 |
return get_today_dataframe()
|
| 33 |
-
elif (day == 'tomorrow'):
|
| 34 |
return get_tomorrow_dataframe()
|
| 35 |
|
| 36 |
def get_possible_destinations():
|
|
|
|
| 28 |
return get_dataframe(hopsworks_tomorrow_path)
|
| 29 |
|
| 30 |
def get_dataframe_of(day):
|
| 31 |
+
if (day.lower() == 'today'):
|
| 32 |
return get_today_dataframe()
|
| 33 |
+
elif (day.lower() == 'tomorrow'):
|
| 34 |
return get_tomorrow_dataframe()
|
| 35 |
|
| 36 |
def get_possible_destinations():
|