From 3c952675fefd2c94b817940ffbd4cd94fd5876c9 Mon Sep 17 00:00:00 2001 From: AWAS666 <33494149+AWAS666@users.noreply.github.com> Date: Sat, 10 Feb 2024 11:42:56 +0100 Subject: [PATCH] fix: wrong import to typo in deepbooru api import --- modules/api/endpoints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/api/endpoints.py b/modules/api/endpoints.py index 23d5e48ef..3d6f2381a 100644 --- a/modules/api/endpoints.py +++ b/modules/api/endpoints.py @@ -80,7 +80,7 @@ def post_interrogate(req: models.ReqInterrogate): caption = shared.interrogator.interrogate(image) return models.ResInterrogate(caption) elif req.model == "deepdanbooru": - from mobules import deepbooru + from modules import deepbooru caption = deepbooru.model.tag(image) return models.ResInterrogate(caption) else: