cscorley / killer-queen

A Django app for Killer Queen league registration, team mixing, and (manual) stat tracking
2 stars 0 forks source link

Team generation is not sorted correctly #4

Closed cscorley closed 6 years ago

cscorley commented 6 years ago

This is currently in reverse order, according to the trueskill.org API:

expose(rating)

    Returns the value of the rating exposure. It starts from 0 and converges to the mean. Use this as a sort key in a leaderboard:

    leaderboard = sorted(ratings, key=env.expose, reverse=True)

    New in version 0.4.