From a3606aca7f67400ec87c192e4f953ad507a61103 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh <102361830+SeaswimmerTheFsh@users.noreply.github.com> Date: Mon, 19 Jun 2023 17:23:27 -0400 Subject: [PATCH] more verbose comments actually just committing this to test my webhook setup --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 3f73d97..2e23a26 100644 --- a/main.py +++ b/main.py @@ -17,12 +17,12 @@ class Client(commands.CommandsClient): @commands.command() async def ping(self, ctx: commands.Context): - # Checks if the bot is running. + # This command checks if the bot is running. await ctx.send("Pong!") @commands.command() async def avatar(self, ctx: commands.Context, member: revolt.Member): - # Checks a user's avatar. + # This command retrieves a user's avatar. if not isinstance(member, revolt.Member): await ctx.send("Please provide a member argument!") return