diff options
author | 2024-09-10 17:14:26 +0100 | |
---|---|---|
committer | 2024-09-10 17:14:26 +0100 | |
commit | 4729a273ef53a71e0511661cb4ba5ad01fb8b24c (patch) | |
tree | 09743a479bf814bdc5180568232b7219af0d4807 | |
parent | Disable poetry packing mode since this is not a packaged library (diff) |
Remove an unneeded noqa
-rw-r--r-- | metricity/exts/event_listeners/startup_sync.py | 2 |
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() |