# -*- coding: utf-8 -*- import discord from discord.ext import commands from utils.pb_handler import handle_pb_command class Pbchimera(commands.Cog): """Cog for managing Chimera Personal Bests""" def __init__(self, bot): self.bot = bot @commands.command(name="pbchimera") async def pbchimera(self, ctx, arg1: str = None, *, arg2: str = None): """!pbchimera command with difficulty handling""" await handle_pb_command(ctx, 'chimera', arg1, arg2) async def setup(bot): await bot.add_cog(Pbchimera(bot))