From 3c34db7904e410082bb86b929a9de25770ae6a20 Mon Sep 17 00:00:00 2001 From: hodanov <1031hoda@gmail.com> Date: Mon, 4 Nov 2024 14:53:36 +0900 Subject: [PATCH] Fix typo. --- cmd/{infrasctucture.py => infrastructure.py} | 0 cmd/txt2img_handler.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename cmd/{infrasctucture.py => infrastructure.py} (100%) diff --git a/cmd/infrasctucture.py b/cmd/infrastructure.py similarity index 100% rename from cmd/infrasctucture.py rename to cmd/infrastructure.py diff --git a/cmd/txt2img_handler.py b/cmd/txt2img_handler.py index c2d65ba..c05a807 100644 --- a/cmd/txt2img_handler.py +++ b/cmd/txt2img_handler.py @@ -5,7 +5,7 @@ import time import modal from domain import OutputDirectory, Prompts, Seed, StableDiffusionOutputManger -from infrasctucture import new_txt2img +from infrastructure import new_txt2img @modal.App("run-stable-diffusion-cli").local_entrypoint()