Campfireman commited on
Commit
9759062
·
1 Parent(s): d329f40

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -47,7 +47,7 @@ def greet(name):
47
 
48
  for x in range(8):
49
  if(x != 0):
50
- str1 += (datetime.now() + timedelta(days=x)).strftime('%Y-%m-%d') + " predicted temperature: " + preds+"\n"
51
 
52
  print(str1)
53
  return str1
 
47
 
48
  for x in range(8):
49
  if(x != 0):
50
+ str1 += (datetime.now() + timedelta(days=x)).strftime('%Y-%m-%d') + " predicted temperature: " + str(int(preds[len(preds) - 8 + x]))+"\n"
51
 
52
  print(str1)
53
  return str1