Skip to content

Commit

Permalink
whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
Interpause committed Jan 31, 2023
1 parent 4b8e719 commit 000363c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def f_txt2img(req: Txt2ImgRequest):
0, # hr_second_pass_steps: 0 uses same num of steps as generation to refine details
req.orig_width, # hr_resize_x
req.orig_height, # hr_resize_y
"", # override_settings_texts (unsupported)
[], # override_settings_texts (unsupported)
*args,
)
images = output[0]
Expand Down Expand Up @@ -279,7 +279,7 @@ def f_img2img(req: Img2ImgRequest):
"", # img2img_batch_input_dir (unspported)
"", # img2img_batch_output_dir (unsupported)
"", # img2img_batch_inpaint_mask_dir (unsupported)
"", # override_settings_texts (unsupported)
[], # override_settings_texts (unsupported)
*args,
)
images = output[0]
Expand Down

0 comments on commit 000363c

Please sign in to comment.