Right now available_players() calculates the list each time it is run, which could probably be changed to having a class attribute that it updates. Should speed up runtime a bit.
Implementation details
ladder/base_ladder.py - Make available_players a class attribute, and update code to manually adjust it as appropriate.
Test cases
Update test cases to use available_players the class attribute
blocked by #162
Right now
available_players()
calculates the list each time it is run, which could probably be changed to having a class attribute that it updates. Should speed up runtime a bit.Implementation details
ladder/base_ladder.py
- Makeavailable_players
a class attribute, and update code to manually adjust it as appropriate.Test cases
available_players
the class attribute