fix: Add type hint for bot parameter in setup function

This commit is contained in:
Slipstream 2025-05-27 21:46:47 -06:00
parent 6af16c43e2
commit 70ad9af28c
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -87,5 +87,5 @@ class LockdownCog(commands.Cog):
await interaction.followup.send("Server unlocked.")
async def setup(bot):
async def setup(bot: commands.Bot):
await bot.add_cog(LockdownCog(bot))