Skip to content

Commit

Permalink
fix linter complaints
Browse files Browse the repository at this point in the history
As title
  • Loading branch information
esc committed Apr 16, 2024
1 parent 69d85f6 commit 510c8fd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions numba_rvsdg/rendering/rendering.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,14 +365,14 @@ def render_flow(flow: ByteFlow) -> None:
"""
ByteFlowRenderer().render_byteflow(flow).view("before")

cflow = flow._join_returns()
ByteFlowRenderer().render_byteflow(cflow).view("closed")
flow.scfg.join_returns()
ByteFlowRenderer().render_byteflow(flow).view("closed")

lflow = cflow._restructure_loop()
ByteFlowRenderer().render_byteflow(lflow).view("loop restructured")
flow.scfg.restructure_loop()
ByteFlowRenderer().render_byteflow(flow).view("loop restructured")

bflow = lflow._restructure_branch()
ByteFlowRenderer().render_byteflow(bflow).view("branch restructured")
flow.scfg.restructure_branch()
ByteFlowRenderer().render_byteflow(flow).view("branch restructured")


def render_scfg(scfg: SCFG) -> None:
Expand Down

0 comments on commit 510c8fd

Please sign in to comment.