diff --git a/utils/lexicapi.py b/utils/lexicapi.py index d8894d5..ca0b529 100644 --- a/utils/lexicapi.py +++ b/utils/lexicapi.py @@ -43,9 +43,6 @@ async def ImageGeneration(model,prompt): await client.close() async def UpscaleImages(image: bytes) -> str: - """ - Upscales an image and return with upscaled image path. - """ client = AsyncClient() content = await client.upscale(image) await client.close()