diff options
| author | 2019-04-23 17:09:36 +0200 | |
|---|---|---|
| committer | 2019-06-27 22:03:58 +0200 | |
| commit | 9e2e8580701f6ce74a75ee96436cf96fcdc24f07 (patch) | |
| tree | 3f2ad84ead911f7f451312254b469c2c3394cfda | |
| parent | Adding the BigBrother watchchannel class (diff) | |
Cleaning up debug functions and unnecessary imports
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/watchchannels/bigbrother.py | 8 | 
1 files changed, 1 insertions, 7 deletions
| diff --git a/bot/cogs/watchchannels/bigbrother.py b/bot/cogs/watchchannels/bigbrother.py index a7a66e6dc..5e1f2c30b 100644 --- a/bot/cogs/watchchannels/bigbrother.py +++ b/bot/cogs/watchchannels/bigbrother.py @@ -2,7 +2,7 @@ import logging  from collections import ChainMap  from discord import Color, Embed, User -from discord.ext.commands import Bot, Context, group +from discord.ext.commands import Context, group  from bot.constants import (      Channels, Roles @@ -111,9 +111,3 @@ class BigBrother(WatchChannel):                  color=Color.red()              )              return await ctx.send(embed=e) - -    @bigbrother_group.command(name='debug') -    @with_role(Roles.owner, Roles.admin, Roles.moderator) -    async def debug(self, ctx): -        for data in self.watched_users.values(): -            await ctx.send(data) | 
