Skip to content

Commit

Permalink
add help message
Browse files Browse the repository at this point in the history
  • Loading branch information
Renaud-Dov committed Dec 24, 2020
1 parent ff7f2ef commit bdd7ea5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,16 @@ def name(member):
async def admin(context):
if context.invoked_subcommand is None:
embed = helpEmbed.AdminHelp()
embed.add_field(name="help", value="admin help")
embed.add_field(name="admin help", value="Show this message")
await context.channel.send(embed=embed)


@client.group()
async def teacher(context):
if context.invoked_subcommand is None:
embed = helpEmbed.TeacherHelp()
embed.add_field(name="help", value="teacher help")
embed.add_field(name="teacher help", value="Show this message")
await context.channel.send(embed=embed)


def returnPresent(id_msg: str, guild_id: int, role_list: list):
Expand Down

0 comments on commit bdd7ea5

Please sign in to comment.