diff options
| author | Bryan Bishop <kanzure@gmail.com> | 2013-09-01 14:42:02 -0500 | 
|---|---|---|
| committer | Bryan Bishop <kanzure@gmail.com> | 2013-09-01 14:42:02 -0500 | 
| commit | 7b8e7ba16aa3cfd4a4c6682ed6dc5783164e07ca (patch) | |
| tree | 9d5ea436fe86a5954bd37621e2725d73c3dae0f8 | |
| parent | 4bd6505e9592b489033646839fff54fa5eb39061 (diff) | |
move imports together
| -rw-r--r-- | pokemontools/crystal.py | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/pokemontools/crystal.py b/pokemontools/crystal.py index ec911f9..35ddcb1 100644 --- a/pokemontools/crystal.py +++ b/pokemontools/crystal.py @@ -21,8 +21,6 @@ import string  if not hasattr(json, "dumps"):      json.dumps = json.write -import labels -  spacing = "\t"  lousy_dragon_shrine_hack = [0x18d079, 0x18d0a9, 0x18d061, 0x18d091] @@ -65,6 +63,7 @@ import re  from interval_map import IntervalMap +import labels  import pksv  # ---- script_parse_table explanation ---- | 
