From d4c78c940ffbe687c5fc283daca334b5086ffd2f Mon Sep 17 00:00:00 2001 From: boopage <83878425+boopage@users.noreply.github.com> Date: Sat, 16 Apr 2022 16:30:00 +0200 Subject: [PATCH] Fix small typo `four` to `for` --- scripts/txt2img.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/txt2img.py b/scripts/txt2img.py index 613de5e1d..80c75ca77 100644 --- a/scripts/txt2img.py +++ b/scripts/txt2img.py @@ -162,4 +162,4 @@ def load_model_from_config(config, ckpt, verbose=False): grid = 255. * rearrange(grid, 'c h w -> h w c').cpu().numpy() Image.fromarray(grid.astype(np.uint8)).save(os.path.join(outpath, f'{prompt.replace(" ", "-")}.png')) - print(f"Your samples are ready and waiting four you here: \n{outpath} \nEnjoy.") + print(f"Your samples are ready and waiting for you here: \n{outpath} \nEnjoy.")