def do(self, ctx, times : int, *, command):
'''Repeats a command a specified number of times'''
msg = copy.copy(ctx.message)
msg.content = command
for _ in range(times):
await self.bot.process_commands(msg)