jonathang commited on
Commit
46617f4
1 Parent(s): f9fc8a8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -203,7 +203,7 @@ Do not include specific numbers.'''.replace('\n', ' '))
203
  images, texts = [], []
204
  for time, data in forecast.items():
205
  img, txt = self.step_one_forecast(data, **kwargs)
206
- images.append(overlay_text_on_image(img, time, 'top-right', decode=True)
207
  texts.append(txt)
208
  return create_collage(*images), *texts
209
 
 
203
  images, texts = [], []
204
  for time, data in forecast.items():
205
  img, txt = self.step_one_forecast(data, **kwargs)
206
+ images.append(overlay_text_on_image(img, time, 'top-right', decode=True))
207
  texts.append(txt)
208
  return create_collage(*images), *texts
209