diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-05-19 15:30:02 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-05-19 15:30:02 -0500 |
commit | 38726204c8b8a481f378166d57011efb7c64737b (patch) | |
tree | 6a802cbe52fafddc760098cbfe3f3b850ab70222 /extras/crystal.py | |
parent | 810e20cc048f3418205adca744dc79c3c59098bc (diff) |
better comments on trainer_group_report
Diffstat (limited to 'extras/crystal.py')
-rw-r--r-- | extras/crystal.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extras/crystal.py b/extras/crystal.py index 8103ba985..0608c699b 100644 --- a/extras/crystal.py +++ b/extras/crystal.py @@ -3525,12 +3525,14 @@ def trainer_name_from_group(group_id, trainer_id=0): return text def trainer_group_report(): + """ Reports how many trainer ids are used in each trainer group. + """ output = "" total = 0 for trainer_group_id in trainer_group_maximums.keys(): group_name = trainer_group_names[trainer_group_id]["name"] first_name = trainer_name_from_group(trainer_group_id).replace("\n", "") - trainers = len(set(trainer_group_maximums[trainer_group_id])) + trainers = len(trainer_group_maximums[trainer_group_id]) total += trainers output += "group "+hex(trainer_group_id)+":\n" output += "\tname: "+group_name+"\n" |