aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Boris Muratov <[email protected]>2021-04-19 20:48:26 +0300
committerGravatar GitHub <[email protected]>2021-04-19 20:48:26 +0300
commita7581a4f9f2724672eebfdf541a922973c018c23 (patch)
tree2200813535941815164793dab101fe8fd50db5b2
parentMerge branch 'mbaruh/offduty' of https://github.com/python-discord/bot into m... (diff)
CamelCase the cog name
-rw-r--r--bot/exts/moderation/modpings.py6
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))