diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-01-27 17:20:41 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-01-27 17:20:41 -0600 |
commit | 5b2848b419148a30e97cb1cdb6f57a06b1076d8b (patch) | |
tree | 03dd5dde1f07f1683ea9ae5dbf6704cd957162ba | |
parent | edee13391dd8f3c8f5a5d0164a60edb4ad99b483 (diff) |
replace wildcard import with explicit import
-rw-r--r-- | extras/crystal.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/extras/crystal.py b/extras/crystal.py index 6c70f642c..3262379d9 100644 --- a/extras/crystal.py +++ b/extras/crystal.py @@ -61,16 +61,17 @@ constant_abbreviation_bytes = {} # Import the characters from its module. from chars import chars, jap_chars -from trainers import * +from trainers import ( + trainer_group_pointer_table_address, # 0x39999 + trainer_group_pointer_table_address_gs, # 0x3993E + trainer_group_names, +) from move_constants import moves # for fixing trainer_group_names import re -trainer_group_pointer_table_address = 0x39999 -trainer_group_pointer_table_address_gs = 0x3993E - from interval_map import IntervalMap from pksv import ( |