Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/europython_discord/cogs/guild_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async def list_participants(self, ctx: commands.Context) -> None:
lines = [f"{ctx.author.mention} Participant Statistics:"]
for role_name, count in role_counts.items():
lines.append(f"* {count} {role_name}")
await ctx.send(content="\n".join(lines), delete_after=5)
await ctx.send(content="\n".join(lines))

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