Update pingCog.py

This commit is contained in:
ishaan 2021-05-18 18:47:54 -04:00
parent 2ad396dbc5
commit 587c378be8

View file

@ -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))