Run make format.

Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
This commit is contained in:
Alessandro Comodi 2019-02-12 22:08:43 +01:00
parent aa4ea882df
commit 1a7302418e
1 changed files with 2 additions and 3 deletions

View File

@ -131,9 +131,8 @@ def check_tile_overlap(db, verbose=False):
addr, bitaddr = ck
word, bit = util.addr_bit2word(bitaddr)
print(
" %s: had %s, got %s" % (
util.addr2str(addr, word, bit), mall[ck],
mtile[ck]))
" %s: had %s, got %s" %
(util.addr2str(addr, word, bit), mall[ck], mtile[ck]))
raise ValueError("%s collisions" % len(collisions))
mall.update(mtile)
tiles_checked += 1