def pick(self, ctx, *choices: commands.clean_content): """Pick a random element.""" if len(choices) < 1: await ctx.send("dude what") return await ctx.send(random.choice(choices))