Skip to content

Commit

Permalink
Remove an unneeded noqa
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisLovering committed Sep 10, 2024
1 parent 86fa572 commit 4729a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metricity/exts/event_listeners/startup_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def __init__(self, bot: Bot) -> None:
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()

Expand Down

0 comments on commit 4729a27

Please sign in to comment.