mirror of https://github.com/pret/pokecrystal.git
replace wildcard import with explicit import
This commit is contained in:
parent
edee13391d
commit
5b2848b419
|
@ -61,16 +61,17 @@ constant_abbreviation_bytes = {}
|
||||||
# Import the characters from its module.
|
# Import the characters from its module.
|
||||||
from chars import chars, jap_chars
|
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
|
from move_constants import moves
|
||||||
|
|
||||||
# for fixing trainer_group_names
|
# for fixing trainer_group_names
|
||||||
import re
|
import re
|
||||||
|
|
||||||
trainer_group_pointer_table_address = 0x39999
|
|
||||||
trainer_group_pointer_table_address_gs = 0x3993E
|
|
||||||
|
|
||||||
from interval_map import IntervalMap
|
from interval_map import IntervalMap
|
||||||
|
|
||||||
from pksv import (
|
from pksv import (
|
||||||
|
|
Loading…
Reference in New Issue