From 587c378be89da70e395ab4efe9e444ba7fc8a74b Mon Sep 17 00:00:00 2001 From: ishaan Date: Tue, 18 May 2021 18:47:54 -0400 Subject: [PATCH] Update pingCog.py --- cogs/pingCog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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