I need to sort this dictionary by points:
key: [(attacker, points), (attacker, points)]
key2: [(attacker, points), (attacker, points)]
so if I have this:
key: [(attacker, 20), (attacker, 25)]
key2: [(attacker, 5), (attacker, 10)]
I will get this:
key2: [(attacker, 5), (attacker, 10)]
key: [(attacker, 20), (attacker, 25)]