From 38726204c8b8a481f378166d57011efb7c64737b Mon Sep 17 00:00:00 2001
From: Bryan Bishop <kanzure@gmail.com>
Date: Sat, 19 May 2012 15:30:02 -0500
Subject: [PATCH] better comments on trainer_group_report

---
 extras/crystal.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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"