From 8acbf97b498d27c59c5edcb4f31a278b0a781d6e Mon Sep 17 00:00:00 2001 From: Keith Rothman <537074+litghost@users.noreply.github.com> Date: Wed, 6 Feb 2019 23:07:19 -0800 Subject: [PATCH] Make format. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com> --- prjxray/fasm_assembler.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/prjxray/fasm_assembler.py b/prjxray/fasm_assembler.py index cea8db31..c756212f 100644 --- a/prjxray/fasm_assembler.py +++ b/prjxray/fasm_assembler.py @@ -138,7 +138,8 @@ class FasmAssembler(object): for block_type in any_bits: # Mark all frames used by this tile as in use. bits = gridinfo.bits[block_type] - for frame in range(bits.base_address, bits.base_address + bits.frames): + for frame in range(bits.base_address, + bits.base_address + bits.frames): self.frames_in_use.add(frame) def parse_fasm_filename(self, filename):