SebastianoMeneghin commited on
Commit
96ce51a
·
verified ·
1 Parent(s): 1550286

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -266,7 +266,7 @@ def get_specific_flights(day, max_delay, departure_hour, ampm, weather, destinat
266
 
267
  def full_day_departure(day):
268
  dataframe = get_dataframe_of(day)
269
- copy_df = dataframe.drop(columns=['airport code'])
270
  return copy_df
271
 
272
  def get_performance():
 
266
 
267
  def full_day_departure(day):
268
  dataframe = get_dataframe_of(day)
269
+ copy_df = dataframe.drop(columns=['airport code']).sort_values(['ontime'], ascending = False)
270
  return copy_df
271
 
272
  def get_performance():