ref: 59d0c6bc0311ea236c355974403176cab39d1894
parent: 4dfb8d3b095c72336614ff6add54cc063321ed50
author: Bryan Bishop <kanzure@gmail.com>
date: Sun Jan 27 11:55:52 EST 2013
better import syntax in comparator.py
--- 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 crystal import (
+ get_label_from_line,
+ get_address_from_line_comment,
+ AsmSection,
+)
-from romstr import RomStr, AsmList
+from romstr import (
+ RomStr,
+ AsmList,
+)
def load_rom(path):
""" Loads a ROM file into an abbreviated RomStr object.