diff options
Diffstat (limited to 'bot/seasons/halloween/spookyrating.py')
| -rw-r--r-- | bot/seasons/halloween/spookyrating.py | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/bot/seasons/halloween/spookyrating.py b/bot/seasons/halloween/spookyrating.py index 8c4f1b12..01fb607b 100644 --- a/bot/seasons/halloween/spookyrating.py +++ b/bot/seasons/halloween/spookyrating.py @@ -17,9 +17,7 @@ with Path('bot', 'resources', 'halloween', 'spooky_rating.json').open() as file:  class SpookyRating: -    """ -    A cog for calculating one's spooky rating -    """ +    """A cog for calculating one's spooky rating"""      def __init__(self, bot):          self.bot = bot @@ -65,5 +63,6 @@ class SpookyRating:  def setup(bot): +    """Cog load."""      bot.add_cog(SpookyRating(bot))      log.info("SpookyRating cog loaded")  |