Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
|