From edd3d01a30734b764078da057c4ac9c9d0ca7c20 Mon Sep 17 00:00:00 2001 From: Nick80835 <24271245+Nick80835@users.noreply.github.com> Date: Sat, 19 Jul 2025 11:45:11 -0400 Subject: [PATCH] forgot to specify the number in deepfry size limit is the size_limit --- ubot/modules/deepfry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubot/modules/deepfry.py b/ubot/modules/deepfry.py index dddd48e..a0ff1f4 100644 --- a/ubot/modules/deepfry.py +++ b/ubot/modules/deepfry.py @@ -43,7 +43,7 @@ async def deepfryer(event): except ValueError: frycount = 1 - data = await event.get_image(1024 * 3072) + data = await event.get_image(size_limit=1024 * 3072) if not data: await event.reply("Reply to an image or sticker or caption an image to deep fry it!")