diff options
author | 2019-09-11 11:33:16 -0400 | |
---|---|---|
committer | 2019-09-11 11:33:16 -0400 | |
commit | da20c52802cbb4c68cfbb058e9ffc986b591240f (patch) | |
tree | bf38f7863925b393326edf4dc04453508e545a2b /bot/seasons/evergreen/showprojects.py | |
parent | Merge branch 'master' into flake8-annotations (diff) |
Fix incorrect merge conflict resolutions, lint remaining items
Diffstat (limited to 'bot/seasons/evergreen/showprojects.py')
-rw-r--r-- | bot/seasons/evergreen/showprojects.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/seasons/evergreen/showprojects.py b/bot/seasons/evergreen/showprojects.py index d41132aa..a943e548 100644 --- a/bot/seasons/evergreen/showprojects.py +++ b/bot/seasons/evergreen/showprojects.py @@ -17,7 +17,7 @@ class ShowProjects(commands.Cog): @commands.Cog.listener() async def on_message(self, message: Message) -> None: - """Adds reactions to posts in #show-your-projects""" + """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 @@ -29,6 +29,6 @@ class ShowProjects(commands.Cog): def setup(bot: commands.Bot) -> None: - """Show Projects Reaction Cog""" + """Show Projects Reaction Cog.""" bot.add_cog(ShowProjects(bot)) log.info("ShowProjects cog loaded") |