Clean up code

This commit is contained in:
Michał Gdula 2023-09-09 20:52:12 +01:00
parent 90a347eb0b
commit c359356f4b
10 changed files with 51 additions and 36 deletions

View file

@ -86,7 +86,7 @@ class Img(commands.Cog):
width, height = image_attachments.width, image_attachments.height
if not 10 < width <= 4500 or not 10 < height <= 4500:
error = "Image must be at least 10x10 and under 4500x4500!"
error = "Image must be at least over 10x10 and under 4500x4500!"
await ctx.reply(embed=error_message(error))
return