diff options
author | 2019-04-21 11:51:45 +1000 | |
---|---|---|
committer | 2019-04-21 11:51:45 +1000 | |
commit | 00f10109ec8d1808b0e4eeca3a6c6a3ad0889368 (patch) | |
tree | fdc5739a8b950294b5fecaa757a695cda8449fd0 | |
parent | Add return annotations. (diff) |
Fix setup docstring.
Co-Authored-By: scragly <[email protected]>
-rw-r--r-- | bot/seasons/easter/egg_hunt/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/easter/egg_hunt/__init__.py b/bot/seasons/easter/egg_hunt/__init__.py index 3f722c9b..43bda223 100644 --- a/bot/seasons/easter/egg_hunt/__init__.py +++ b/bot/seasons/easter/egg_hunt/__init__.py @@ -6,7 +6,7 @@ log = logging.getLogger(__name__) def setup(bot): - """Conversation starters Cog load.""" + """Easter Egg Hunt Cog load.""" bot.add_cog(EggHunt()) log.info("EggHunt cog loaded") |