diff --git a/scripts/postprocessing/rankings.py b/scripts/postprocessing/rankings.py index 5fd2fcf6..7b28399c 100644 --- a/scripts/postprocessing/rankings.py +++ b/scripts/postprocessing/rankings.py @@ -99,7 +99,7 @@ def ranked_pairs(ranks: List[List[int]]): tallies = tallies - tallies.T # print(tallies) # note: the resulting tally matrix should be skew-symmetric - # order by strenght of victory (using tideman's original method, don't think it would make a difference for us) + # order by strength of victory (using tideman's original method, don't think it would make a difference for us) sorted_majorities = [] for i in range(len(ranks[0])): for j in range(len(ranks[i])):