From dfa2820b409c96106919169ebc15b1077c82df71 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sun, 10 Sep 2023 14:11:53 +0000 Subject: [PATCH] refactor: remove unnecessary f-string It is wasteful to use `f-string` mechanism if there are no expressions to be extrapolated. It is recommended to use regular strings instead. --- lynxie/commands/e621.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lynxie/commands/e621.py b/lynxie/commands/e621.py index 2a262f4..6ad5b5d 100644 --- a/lynxie/commands/e621.py +++ b/lynxie/commands/e621.py @@ -9,4 +9,4 @@ class E621(commands.Cog): @commands.command() async def e621(self, ctx): - await ctx.reply(f":3") + await ctx.reply(":3")