from .leaderboard import Leaderboard async def setup(bot): """Load the Leaderboard cog.""" cog = Leaderboard(bot) await cog.initialize() await bot.add_cog(cog)