HighestMasteryCommand.py done done done done

This commit is contained in:
s-prechtl 2022-03-17 14:23:24 +01:00
parent 06964afae6
commit 7f742df6ff

View file

@ -28,7 +28,7 @@ class HighestMastery(APICommands.Command.Command, ABC):
return
listlen = int(message.content.split(" ")[1]) if firstIsInt else 10
try:
output = self.getChampionMasteryList(sumname, listlen)
output = getChampionMasteryList(sumname, listlen)
for i in output:
await message.channel.send(i)
except: