Freak-ppa commited on
Commit
380f596
·
verified ·
1 Parent(s): c5039f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -89,7 +89,7 @@ def generate_image(prompt, image):
89
  image = Image.fromarray(image)
90
  image.save(INPUT_DIR+'/input.png', format='PNG')
91
 
92
- prefix_filename = random.randint(0, 999999)
93
  queue_reqs.add(prefix_filename)
94
  process = None
95
  try:
 
89
  image = Image.fromarray(image)
90
  image.save(INPUT_DIR+'/input.png', format='PNG')
91
 
92
+ prefix_filename = str(random.randint(0, 999999))
93
  queue_reqs.add(prefix_filename)
94
  process = None
95
  try: