Spaces:
orrinin
/
Runtime error

orrinin commited on
Commit
5685662
·
verified ·
1 Parent(s): 45ef37e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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.json(root,file))
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