From dc9a85ca98da736a7cc24500e31e925992b22077 Mon Sep 17 00:00:00 2001 From: Toby Harradine Date: Sun, 12 Aug 2018 12:09:38 +1000 Subject: [PATCH] [Streams] Add docstring for [p]streamalert list (#2001) --- redbot/cogs/streams/streams.py | 1 + 1 file changed, 1 insertion(+) diff --git a/redbot/cogs/streams/streams.py b/redbot/cogs/streams/streams.py index ca4bed5b8..ec81e7a3f 100644 --- a/redbot/cogs/streams/streams.py +++ b/redbot/cogs/streams/streams.py @@ -209,6 +209,7 @@ class Streams: @streamalert.command(name="list") async def streamalert_list(self, ctx: commands.Context): + """List all active stream alerts in this server.""" streams_list = defaultdict(list) guild_channels_ids = [c.id for c in ctx.guild.channels] msg = _("Active alerts:\n\n")