We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be6731a commit d782906Copy full SHA for d782906
bot.py
@@ -99,7 +99,7 @@ def embed_generator(
99
@bot.command()
100
async def ping(ctx):
101
"""Check to see if bot is working. Also returns path of the script"""
102
- msg = f"I'm alive! {ctx.message.author.mention} 🤗"
+ msg = f"I'm alive!"
103
print(msg)
104
await ctx.send(msg)
105
@@ -439,6 +439,7 @@ def fetch_spreadsheet(speadsheet_id: str):
439
@commands.has_any_role("Cabinet Member")
440
async def points(ctx):
441
formatted_points = "\n".join([f"{task} - {points}" for task, points in points_dict.items()])
442
+ await ctx.send(f"```{formatted_points}```")
443
444
# Run the bot
445
bot.run(getenv("BOT_TOKEN"))
0 commit comments