Skip to content

Commit

Permalink
Remove unnessesary empty line
Browse files Browse the repository at this point in the history
  • Loading branch information
nishantjr committed Jun 5, 2022
1 parent 73e93b1 commit c3274e4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion pyk/src/pyk/kcfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,6 @@ def print_subgraph(indent: str, curr_node: KCFG.Node) -> List[str]:
ret.append(indent + '│ constraint: ' + str(kprint.pretty_print(edge_like.constraint)))
ret.append(indent + '│ subst:')
ret.extend(add_indent(indent + '│ ', pretty_print_subst(edge_like.subst)))
ret.append(indent + '│')

ret.append((indent + elbow + ' ' + show_node(edge_like.target)))
ret.extend(print_subgraph(new_indent, edge_like.target))
Expand Down
1 change: 0 additions & 1 deletion pyk/src/pyk/tests/test_kcfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,6 @@ def test_pretty_print(self):
f" │ constraint: KApply(label=KLabel(name='#Top', params=(KSort(name='GeneratedTopCell'),)), args=())\n"
f" │ subst:\n"
f" │ V11 |-> KToken(token='8', sort=KSort(name='Int'))\n"
f" │\n"
f" ├ {short_id(11)} (frontier)\n"
f" ┊ (continues as previously)\n\n"
)

0 comments on commit c3274e4

Please sign in to comment.