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 | 263561455b434ba8877aeff216df96ef084cfda2 (patch) | |
tree | 865a64ce7ab34a47a18acb46efb4dc91f464aa76 /comparator.py | |
parent | 6922cd3f6171b4420f912b6fecc2a87a521c051e (diff) |
better import syntax in comparator.py
original-commit-id: 59d0c6bc0311ea236c355974403176cab39d1894
Diffstat (limited to 'comparator.py')
-rw-r--r-- | comparator.py | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/comparator.py b/comparator.py index 690fa52..28be42b 100644 --- a/comparator.py +++ b/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. |