diff options
author | 2021-04-19 20:48:26 +0300 | |
---|---|---|
committer | 2021-04-19 20:48:26 +0300 | |
commit | a7581a4f9f2724672eebfdf541a922973c018c23 (patch) | |
tree | 2200813535941815164793dab101fe8fd50db5b2 | |
parent | Merge branch 'mbaruh/offduty' of https://github.com/python-discord/bot into m... (diff) |
CamelCase the cog name
-rw-r--r-- | bot/exts/moderation/modpings.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/exts/moderation/modpings.py b/bot/exts/moderation/modpings.py index c351db615..690aa7c68 100644 --- a/bot/exts/moderation/modpings.py +++ b/bot/exts/moderation/modpings.py @@ -14,7 +14,7 @@ from bot.utils.scheduling import Scheduler log = logging.getLogger(__name__) -class Modpings(Cog): +class ModPings(Cog): """Commands for a moderator to turn moderator pings on and off.""" # RedisCache[str, str] @@ -132,5 +132,5 @@ class Modpings(Cog): def setup(bot: Bot) -> None: - """Load the Modpings cog.""" - bot.add_cog(Modpings(bot)) + """Load the ModPings cog.""" + bot.add_cog(ModPings(bot)) |