From 9f00d945ae0d18f46b8ac349d15000ba961d8b0d Mon Sep 17 00:00:00 2001 From: Fluffy-Bean Date: Mon, 11 Sep 2023 23:34:34 +0100 Subject: [PATCH] Line too long --- lynxie/commands/image.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lynxie/commands/image.py b/lynxie/commands/image.py index 8f95815..9eeb546 100644 --- a/lynxie/commands/image.py +++ b/lynxie/commands/image.py @@ -218,12 +218,16 @@ class Img(commands.Cog): response.seek(0) response = discord.File(response, filename="image.gif") - time_taken = (datetime.datetime.now() - start_time).microseconds / 1000 + time_taken = ( + (datetime.datetime.now() - start_time).microseconds + / 1000 + ) embed = ( discord.Embed( title="Saveable", - description="Image converted to GIF, click the star to save it :3", + description="Image converted to GIF, " + "click the star to save it :3", colour=discord.Colour.orange(), ) .set_image(url="attachment://image.gif")