Update app.py
Browse files
app.py
CHANGED
|
@@ -136,8 +136,9 @@ def generate(
|
|
| 136 |
|
| 137 |
for root, dirs, files in os.walk(result):
|
| 138 |
for file in files:
|
|
|
|
| 139 |
if file.endswith('.jpg'):
|
| 140 |
-
images.append(os.path.
|
| 141 |
|
| 142 |
return images, seed
|
| 143 |
|
|
|
|
| 136 |
|
| 137 |
for root, dirs, files in os.walk(result):
|
| 138 |
for file in files:
|
| 139 |
+
print(file)
|
| 140 |
if file.endswith('.jpg'):
|
| 141 |
+
images.append(os.path.join(root,file))
|
| 142 |
|
| 143 |
return images, seed
|
| 144 |
|