Skip to content

Commit b2cf3ae

Browse files
authored
Remove auto-deletion of '$participants' response (#231)
1 parent 29e26f5 commit b2cf3ae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/europython_discord/cogs/guild_statistics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async def list_participants(self, ctx: commands.Context) -> None:
3838
lines = [f"{ctx.author.mention} Participant Statistics:"]
3939
for role_name, count in role_counts.items():
4040
lines.append(f"* {count} {role_name}")
41-
await ctx.send(content="\n".join(lines), delete_after=5)
41+
await ctx.send(content="\n".join(lines))
4242

4343
async def cog_check(self, ctx: commands.Context) -> bool:
4444
"""Check if the requested command shall be executed."""

0 commit comments

Comments
 (0)