DetGC commited on
Commit
926ee58
·
verified ·
1 Parent(s): 37a8442

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -84,6 +84,7 @@ async def infer(model_str, prompt, nprompt="", height=0, width=0, steps=0, cfg=0
84
  if task.done() and result is not None and not isinstance(result, tuple):
85
  with lock:
86
  # png_path = "img.png"
 
87
  png_path = get_current_time() + "_" + loopcounter + ".png"
88
  loopcounter += 1
89
  image = save_image(result, png_path, model_str, prompt, nprompt, height, width, steps, cfg, seed)
 
84
  if task.done() and result is not None and not isinstance(result, tuple):
85
  with lock:
86
  # png_path = "img.png"
87
+ global loopcounter
88
  png_path = get_current_time() + "_" + loopcounter + ".png"
89
  loopcounter += 1
90
  image = save_image(result, png_path, model_str, prompt, nprompt, height, width, steps, cfg, seed)