From 2ad396dbc54e5fd9b907930e3ba38626c163d373 Mon Sep 17 00:00:00 2001 From: ishaan Date: Tue, 18 May 2021 18:45:44 -0400 Subject: [PATCH] Update pingCog.py --- cogs/pingCog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/pingCog.py b/cogs/pingCog.py index c17b826..6c51f8d 100644 --- a/cogs/pingCog.py +++ b/cogs/pingCog.py @@ -1,7 +1,7 @@ import discord from discord.ext import commands -class ExampleCog(commands.Cog): +class PingCog(commands.Cog): def __init__(self, client): self.client = client @@ -17,4 +17,4 @@ class ExampleCog(commands.Cog): await ctx.send(f'Pong! `{round(client.latency * 1000)}ms`') def setup(client): - client.add_cog(ExampleCog(client)) \ No newline at end of file + client.add_cog(PingCog(client)) \ No newline at end of file