shithub: pokecrystal

Download patch

ref: 5b2848b419148a30e97cb1cdb6f57a06b1076d8b
parent: edee13391dd8f3c8f5a5d0164a60edb4ad99b483
author: Bryan Bishop <[email protected]>
date: Sun Jan 27 12:20:41 EST 2013

replace wildcard import with explicit import

--- a/extras/crystal.py
+++ b/extras/crystal.py
@@ -61,15 +61,16 @@
 # 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