aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar SebastiaanZ <[email protected]>2019-04-23 17:09:36 +0200
committerGravatar SebastiaanZ <[email protected]>2019-06-27 22:03:58 +0200
commit9e2e8580701f6ce74a75ee96436cf96fcdc24f07 (patch)
tree3f2ad84ead911f7f451312254b469c2c3394cfda
parentAdding the BigBrother watchchannel class (diff)
Cleaning up debug functions and unnecessary imports
-rw-r--r--bot/cogs/watchchannels/bigbrother.py8
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)