Skip to content

Commit

Permalink
Fix tuple bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoeders committed Sep 18, 2024
1 parent 4bde740 commit ba61437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bfasst/flows/rand_soc_dumped.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, num_designs=1, part=None, randsoc_config_path=None):
self.rand_soc_tool = RandSoC(self, num_designs=num_designs, config_path=randsoc_config_path)

# Build each random design
for i, design_tcl, contraints_tcl in enumerate(
for i, (design_tcl, contraints_tcl) in enumerate(
zip(
self.rand_soc_tool.outputs["design_tcl"],
self.rand_soc_tool.outputs["impl_constraints_tcl"],
Expand Down

0 comments on commit ba61437

Please sign in to comment.