refactor: fix casing and add type hints

This commit is contained in:
2025-02-05 17:23:51 -05:00
parent d63155d0fb
commit 94837f0e77
3 changed files with 8 additions and 8 deletions

View File

@@ -81,7 +81,7 @@ def messages_per_second(limit=500):
)
async def auto_count(channel_id):
async def auto_count(channel_id: int):
if (channel := await client.fetch_channel(channel_id)) and isinstance(
channel, disnake.TextChannel
):