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.
This commit is contained in:
deepsource-autofix[bot] 2023-09-10 14:11:53 +00:00 committed by GitHub
parent 14a9516a39
commit dfa2820b40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,4 +9,4 @@ class E621(commands.Cog):
@commands.command()
async def e621(self, ctx):
await ctx.reply(f":3")
await ctx.reply(":3")