summaryrefslogtreecommitdiff
path: root/trainers.py
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2012-05-20 02:15:40 -0500
committerBryan Bishop <kanzure@gmail.com>2012-05-20 02:15:40 -0500
commit6cfb35b256bc237ad0613a422b6f29982917be23 (patch)
treefd9804ba6d36353329bb37d34010244e1ab2bec4 /trainers.py
parent81cde84d463fa6a18d738239cd7dba1b856ec29a (diff)
spit out trainer id constants
original-commit-id: 11177b9b7d6257c1ec3118296e010e243ec5bb74
Diffstat (limited to 'trainers.py')
-rw-r--r--trainers.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/trainers.py b/trainers.py
index d5564b6..0a465a0 100644
--- a/trainers.py
+++ b/trainers.py
@@ -98,9 +98,8 @@ def remove_parentheticals_from_trainer_group_names():
.replace("é", "e")
# and calculate the address of the first byte of this pointer
- trainer_group_names[key] = {"name": newvalue,
- "pointer_address": trainer_group_pointer_table_address + (i * 2),
- }
+ trainer_group_names[key]["name"] = newvalue
+ trainer_group_names[key]["pointer_address"] = trainer_group_pointer_table_address + (i * 2)
i += 1
return trainer_group_names