Skip to content

Commit 647a444

Browse files
authored
Merge pull request #35 from esc/fix_python_ingestion
Fix python ingestion
2 parents 1dce90f + dd17688 commit 647a444

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numba_rvsdg/core/datastructures/flow_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def build_basicblocks(self: "FlowInfo", end_offset=None) -> "SCFG":
8989
term_offset = _prev_inst_offset(end)
9090
if term_offset not in self.jump_insts:
9191
# implicit jump
92-
targets = (names[end],)
92+
targets = [names[end],]
9393
else:
9494
targets = [names[o] for o in self.jump_insts[term_offset]]
9595

0 commit comments

Comments
 (0)