diff --git a/cogs/pingCog.py b/cogs/pingCog.py index 6c51f8d..d3aa6e5 100644 --- a/cogs/pingCog.py +++ b/cogs/pingCog.py @@ -14,7 +14,7 @@ class PingCog(commands.Cog): # Commands @commands.command(aliases=['latency']) async def ping(self, ctx): - await ctx.send(f'Pong! `{round(client.latency * 1000)}ms`') + await ctx.send(f'Pong! {round(client.latency * 1000)}ms') def setup(client): client.add_cog(PingCog(client)) \ No newline at end of file