We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29e26f5 commit b2cf3aeCopy full SHA for b2cf3ae
1 file changed
src/europython_discord/cogs/guild_statistics.py
@@ -38,7 +38,7 @@ async def list_participants(self, ctx: commands.Context) -> None:
38
lines = [f"{ctx.author.mention} Participant Statistics:"]
39
for role_name, count in role_counts.items():
40
lines.append(f"* {count} {role_name}")
41
- await ctx.send(content="\n".join(lines), delete_after=5)
+ await ctx.send(content="\n".join(lines))
42
43
async def cog_check(self, ctx: commands.Context) -> bool:
44
"""Check if the requested command shall be executed."""
0 commit comments