Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -59,7 +59,7 @@ def gen(seed):
|
|
| 59 |
for i in range(4):
|
| 60 |
img = Image.open(str(i)+".png")
|
| 61 |
imgArrSmall.append(i)
|
| 62 |
-
img = img.resize((900,900)
|
| 63 |
imgArrLarge.append(i)
|
| 64 |
return imgArrSmall, imgArrLarge
|
| 65 |
|
|
|
|
| 59 |
for i in range(4):
|
| 60 |
img = Image.open(str(i)+".png")
|
| 61 |
imgArrSmall.append(i)
|
| 62 |
+
img = img.resize((900,900),Image,ANTIALIAS)
|
| 63 |
imgArrLarge.append(i)
|
| 64 |
return imgArrSmall, imgArrLarge
|
| 65 |
|