aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2024-09-10 17:14:26 +0100
committerGravatar Chris Lovering <[email protected]>2024-09-10 17:14:26 +0100
commit4729a273ef53a71e0511661cb4ba5ad01fb8b24c (patch)
tree09743a479bf814bdc5180568232b7219af0d4807
parentDisable poetry packing mode since this is not a packaged library (diff)
Remove an unneeded noqa
-rw-r--r--metricity/exts/event_listeners/startup_sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/metricity/exts/event_listeners/startup_sync.py b/metricity/exts/event_listeners/startup_sync.py
index 90b63c6..b9c17aa 100644
--- a/metricity/exts/event_listeners/startup_sync.py
+++ b/metricity/exts/event_listeners/startup_sync.py
@@ -26,7 +26,7 @@ class StartupSyncer(commands.Cog):
self.bot = bot
scheduling.create_task(self.sync_guild())
- async def sync_guild(self) -> None: # noqa: PLR0914
+ async def sync_guild(self) -> None:
"""Sync all channels and members in the guild."""
await self.bot.wait_until_guild_available()