def clean(self, ctx: DogbotContext): """Removes recent messages posted by the bot.""" try: await ctx.channel.purge(limit=50, check=lambda m: m.author == ctx.bot.user) except discord.NotFound: pass