From d1a57e3819d8455fdd7a4a18eb3d4849cbdc39a7 Mon Sep 17 00:00:00 2001 From: Thanos <111999343+Sachaa-Thanasius@users.noreply.github.com> Date: Tue, 7 Nov 2023 16:31:30 -0500 Subject: [PATCH] Add FIXME comment. --- exts/ai_generation/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exts/ai_generation/utils.py b/exts/ai_generation/utils.py index 828accd..0697d1b 100644 --- a/exts/ai_generation/utils.py +++ b/exts/ai_generation/utils.py @@ -101,7 +101,7 @@ async def create_image(client: openai.AsyncOpenAI, prompt: str, size: tuple[int, prompt=prompt, n=1, response_format="url", - size=f"{size[0]}x{size[1]}", + size=f"{size[0]}x{size[1]}", # type: ignore # FIXME: Find a way to pass in a literal. ) url = image_response.data[0].url