Skip to content

Commit 303d085

Browse files
committed
Remove unnecessary f-string
1 parent fe4dbe1 commit 303d085

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/app_commands/slash_cog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ async def hello(self, ctx):
1212

1313
@slash_command() # Not passing in guild_ids creates a global slash command (might take an hour to register).
1414
async def hi(self, ctx):
15-
await ctx.respond(f"Hi, this is a global slash command from a cog!")
15+
await ctx.respond("Hi, this is a global slash command from a cog!")
1616

1717
def setup(bot):
1818
bot.add_cog(Example(bot))

0 commit comments

Comments
 (0)