aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2022-04-20 22:25:20 +0100
committerGravatar Chris Lovering <[email protected]>2022-04-20 22:25:20 +0100
commit17ae32af4cf2d32912fe037d9857f2b00725b283 (patch)
tree3d0a5efbf948989c6bf178f8e3168dc54cbc5934
parentMerge pull request #2118 from python-discord/bump-d.py-version (diff)
Don't call broken ModPings scheduler
This is being fixed in https://github.com/python-discord/bot/pull/2001
-rw-r--r--bot/exts/moderation/modpings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/modpings.py b/bot/exts/moderation/modpings.py
index 4d02c4530..e82099c88 100644
--- a/bot/exts/moderation/modpings.py
+++ b/bot/exts/moderation/modpings.py
@@ -42,7 +42,7 @@ class ModPings(Cog):
async def cog_load(self) -> None:
"""Schedule both when to reapply role and all mod ping schedules."""
- await self.reschedule_modpings_schedule()
+ # await self.reschedule_modpings_schedule()
await self.reschedule_roles()
async def reschedule_roles(self) -> None: