I have this function async def profile(self, ctx, region, *, summoner) and I'm trying to call it from another function with await self.profile(ctx, region, summoner), and it gives an error:
> Too many positional arguments for method callpylint Missing mandatory
> keyword argument 'summoner' in method callpylint
The problem is with the " * " in the profile function. How can I make this work without removing it?