From 404ad6a7fde65a71ad6759abf94d53dbc3d3a013 Mon Sep 17 00:00:00 2001 From: chainchompa Date: Tue, 27 Aug 2024 15:42:42 -0400 Subject: [PATCH] cleanup --- invokeai/app/api/routers/style_presets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invokeai/app/api/routers/style_presets.py b/invokeai/app/api/routers/style_presets.py index 600cd237db..0d7f1532d3 100644 --- a/invokeai/app/api/routers/style_presets.py +++ b/invokeai/app/api/routers/style_presets.py @@ -53,7 +53,7 @@ async def get_style_preset( return StylePresetRecordWithImage(image=image, **style_preset.model_dump()) except StylePresetNotFoundError: raise HTTPException(status_code=404, detail="Style preset not found") - + @style_presets_router.post( "/i/{style_preset_id}", operation_id="set_style_preset",