fix typo
Browse files
app.py
CHANGED
|
@@ -292,7 +292,7 @@ def main():
|
|
| 292 |
try:
|
| 293 |
if image_data['is_pano']:
|
| 294 |
image = process_panorama(image_data['thumb_1024_url'])
|
| 295 |
-
image_bytes =
|
| 296 |
image.save(image_bytes, format=image.format)
|
| 297 |
image_bytes = image_bytes.getvalue()
|
| 298 |
else:
|
|
|
|
| 292 |
try:
|
| 293 |
if image_data['is_pano']:
|
| 294 |
image = process_panorama(image_data['thumb_1024_url'])
|
| 295 |
+
image_bytes = BytesIO()
|
| 296 |
image.save(image_bytes, format=image.format)
|
| 297 |
image_bytes = image_bytes.getvalue()
|
| 298 |
else:
|