SevenhuijsenM commited on
Commit
f361f28
·
1 Parent(s): 4a8dace

Changed order

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -67,11 +67,11 @@ def predict(code, magnitudeOfDelay, hour, iconCategory, latitude, longitude, mon
67
  # Create a row from the input
68
  row = {
69
  'code': int(code),
70
- 'magnitudeOfDelay': int(magnitudeOfDelay),
71
  'hour': int(hour),
72
  'iconCategory': int(iconCategory),
73
  'latitude': latitude,
74
  'longitude': longitude,
 
75
  'month': int(month)
76
  }
77
 
 
67
  # Create a row from the input
68
  row = {
69
  'code': int(code),
 
70
  'hour': int(hour),
71
  'iconCategory': int(iconCategory),
72
  'latitude': latitude,
73
  'longitude': longitude,
74
+ 'magnitudeOfDelay': int(magnitudeOfDelay),
75
  'month': int(month)
76
  }
77