aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/seasons/evergreen/showprojects.py4
-rw-r--r--bot/seasons/halloween/8ball.py1
-rw-r--r--bot/seasons/valentines/be_my_valentine.py1
3 files changed, 1 insertions, 5 deletions
diff --git a/bot/seasons/evergreen/showprojects.py b/bot/seasons/evergreen/showprojects.py
index d6223690..37809b33 100644
--- a/bot/seasons/evergreen/showprojects.py
+++ b/bot/seasons/evergreen/showprojects.py
@@ -17,7 +17,6 @@ class ShowProjects(commands.Cog):
@commands.Cog.listener()
async def on_message(self, message):
"""Adds reactions to posts in #show-your-projects"""
-
reactions = ["\U0001f44d", "\U00002764", "\U0001f440", "\U0001f389", "\U0001f680", "\U00002b50", "\U0001f6a9"]
if (message.channel.id == Channels.show_your_projects
and message.author.bot is False
@@ -25,11 +24,10 @@ class ShowProjects(commands.Cog):
for reaction in reactions:
await message.add_reaction(reaction)
- self.lastPoster = message.author.id
+ self.lastPoster = message.author.id
def setup(bot):
"""Show Projects Reaction Cog"""
-
bot.add_cog(ShowProjects(bot))
log.info("ShowProjects cog loaded")
diff --git a/bot/seasons/halloween/8ball.py b/bot/seasons/halloween/8ball.py
index af037e53..d7bddbfb 100644
--- a/bot/seasons/halloween/8ball.py
+++ b/bot/seasons/halloween/8ball.py
@@ -30,6 +30,5 @@ class SpookyEightBall(commands.Cog):
def setup(bot):
"""Spooky Eight Ball Cog Load."""
-
bot.add_cog(SpookyEightBall(bot))
log.info("SpookyEightBall cog loaded")
diff --git a/bot/seasons/valentines/be_my_valentine.py b/bot/seasons/valentines/be_my_valentine.py
index fff3e367..08fea33d 100644
--- a/bot/seasons/valentines/be_my_valentine.py
+++ b/bot/seasons/valentines/be_my_valentine.py
@@ -40,7 +40,6 @@ class BeMyValentine(commands.Cog):
1) use the command \".lovefest sub\" to get the lovefest role.
2) use the command \".lovefest unsub\" to get rid of the lovefest role.
"""
-
await ctx.send_help(ctx.command)
@lovefest_role.command(name="sub")