ref: 4dfb8d3b095c72336614ff6add54cc063321ed50
parent: ac47399e66c333dd733a352e2c93689908eaba3b
author: Bryan Bishop <[email protected]>
date: Sun Jan 27 11:54:58 EST 2013
better import syntax in crystal.py
--- a/extras/crystal.py
+++ b/extras/crystal.py
@@ -1,6 +1,10 @@
# -*- coding: utf-8 -*-
# utilities to help disassemble pokémon crystal
-import sys, os, inspect, hashlib, json
+import os
+import sys
+import inspect
+import hashlib
+import json
from copy import copy, deepcopy
import subprocess
from new import classobj
@@ -115,7 +119,10 @@
replace("hooh", "HoOh").\
replace(" ", "")
-from romstr import RomStr, AsmList
+from romstr import (
+ RomStr,
+ AsmList,
+)
rom = RomStr(None)
@@ -187,7 +194,10 @@
map_group_offsets.append(offset)
return map_group_offsets
-from pointers import calculate_bank, calculate_pointer
+from pointers import (
+ calculate_bank,
+ calculate_pointer,
+)
def calculate_pointer_from_bytes_at(address, bank=False):
"""calculates a pointer from 2 bytes at a location