diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-01-27 16:55:52 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-01-27 16:55:52 -0600 |
commit | 59d0c6bc0311ea236c355974403176cab39d1894 (patch) | |
tree | 18060fa97467a1234cf30f374ddd20cd06229008 /extras/comparator.py | |
parent | 4dfb8d3b095c72336614ff6add54cc063321ed50 (diff) |
better import syntax in comparator.py
Diffstat (limited to 'extras/comparator.py')
-rw-r--r-- | extras/comparator.py | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/extras/comparator.py b/extras/comparator.py index 690fa5236..28be42ba9 100644 --- a/extras/comparator.py +++ b/extras/comparator.py @@ -4,11 +4,16 @@ # date: 2012-05-29 # purpose: find shared functions between red/crystal -from crystal import get_label_from_line, \ - get_address_from_line_comment, \ - AsmSection - -from romstr import RomStr, AsmList +from crystal import ( + get_label_from_line, + get_address_from_line_comment, + AsmSection, +) + +from romstr import ( + RomStr, + AsmList, +) def load_rom(path): """ Loads a ROM file into an abbreviated RomStr object. |