Run make format.

Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
Keith Rothman 2019-01-27 22:32:07 -08:00
parent 32b9da0d97
commit d6fbee2e4d
1 changed files with 2 additions and 1 deletions

View File

@ -11,7 +11,8 @@ def check_frames(tagstr, addrlist):
for addrstr in addrlist:
frame = parse_addr(addrstr, get_base_frame=True)
frames.add(frame)
assert len(frames) == 1, ("{}: More than one base address".format(tagstr), map(hex, frames))
assert len(frames) == 1, (
"{}: More than one base address".format(tagstr), map(hex, frames))
def parse_addr(line, only_frame=False, get_base_frame=False):