diff options
| -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. | 
