mirror of
https://github.com/Fluffy-Bean/Lynxie.git
synced 2025-05-19 18:04:53 +00:00
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:
parent
14a9516a39
commit
dfa2820b40
1 changed files with 1 additions and 1 deletions
|
@ -9,4 +9,4 @@ class E621(commands.Cog):
|
||||||
|
|
||||||
@commands.command()
|
@commands.command()
|
||||||
async def e621(self, ctx):
|
async def e621(self, ctx):
|
||||||
await ctx.reply(f":3")
|
await ctx.reply(":3")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue