async def nba(self,*team:str): """display score(s) of nba game""" t = ' '.join(team) await self.bot.say(nflgame.get_game(t,'nba'))
async def nba(self, ctx, *team: str): """display score(s) of nba game""" t = ' '.join(team) await ctx.send(nflgame.get_game(t, 'nba'))