more verbose comments
actually just committing this to test my webhook setup
This commit is contained in:
parent
07749afef7
commit
a3606aca7f
1 changed files with 2 additions and 2 deletions
4
main.py
4
main.py
|
@ -17,12 +17,12 @@ class Client(commands.CommandsClient):
|
||||||
|
|
||||||
@commands.command()
|
@commands.command()
|
||||||
async def ping(self, ctx: commands.Context):
|
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!")
|
await ctx.send("Pong!")
|
||||||
|
|
||||||
@commands.command()
|
@commands.command()
|
||||||
async def avatar(self, ctx: commands.Context, member: revolt.Member):
|
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):
|
if not isinstance(member, revolt.Member):
|
||||||
await ctx.send("Please provide a member argument!")
|
await ctx.send("Please provide a member argument!")
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue