Yasaman commited on
Commit
5fa734b
·
1 Parent(s): 666bcf9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -37,7 +37,7 @@ def air_quality(city):
37
  predictions += "Predicted AQI on " + (datetime.now() + timedelta(days=k)).strftime('%Y-%m-%d') + ": " + str(int(preds[k]))+"\n"
38
 
39
  print(predictions)
40
- return predictions
41
 
42
 
43
 
 
37
  predictions += "Predicted AQI on " + (datetime.now() + timedelta(days=k)).strftime('%Y-%m-%d') + ": " + str(int(preds[k]))+"\n"
38
 
39
  print(predictions)
40
+ return predictions + model_dir
41
 
42
 
43