SebastianoMeneghin commited on
Commit
a28025d
·
verified ·
1 Parent(s): c1110cc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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():