development #1

Merged
AllfatherHatt merged 157 commits from development into master 2025-06-14 15:47:26 +02:00
2 changed files with 4 additions and 3 deletions
Showing only changes of commit 4f84c3b89c - Show all commits

View File

@ -1,6 +1,6 @@
from redbot.core.bot import Red
from .trafficCog import TrafficCog
def setup(bot):
async def setup(bot: Red):
cog = TrafficCog(bot)
bot.add_cog(cog)
await bot.add_cog(cog)

View File

@ -92,4 +92,5 @@ class TrafficCog(commands.Cog):
await channel.send(f"{member.display_name} has been banned from the server.")
def setup(bot):
bot.add_cog(TrafficCog(bot))
cog = TrafficCog(bot)
bot.add_cog(cog)