From 000363cfceaa7e651d65df8f6cb6a7b0dd0d0403 Mon Sep 17 00:00:00 2001 From: John-Henry Lim <42513874+Interpause@users.noreply.github.com> Date: Tue, 31 Jan 2023 22:55:00 +0800 Subject: [PATCH] whoops --- backend/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/app.py b/backend/app.py index f19d8ebd..127f5f87 100644 --- a/backend/app.py +++ b/backend/app.py @@ -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] @@ -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]