From 0bb85fe77ea1c1f3c27b68428047fdeaaf9562f7 Mon Sep 17 00:00:00 2001 From: hodanov <1031hoda@gmail.com> Date: Wed, 13 Sep 2023 13:02:03 +0900 Subject: [PATCH] Repair duplicate error when calling a remote function in sdcli/txt2img.py. --- sdcli/txt2img.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdcli/txt2img.py b/sdcli/txt2img.py index 4574477..2a00b14 100644 --- a/sdcli/txt2img.py +++ b/sdcli/txt2img.py @@ -32,7 +32,7 @@ def main( if seed == -1: seed_generated = util.generate_seed() start_time = time.time() - images = stub.app.run_inference.remote( + images = stub.run_inference.remote( prompt=prompt, n_prompt=n_prompt, height=height,