Skip to content

Commit

Permalink
[core][compiled graphs] Clean up node visualization (#49239)
Browse files Browse the repository at this point in the history
Signed-off-by: Rui Qiao <[email protected]>
  • Loading branch information
ruisearch42 authored Dec 13, 2024
1 parent aacc1b9 commit 2385b18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ray/dag/dag_node_operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def viz_str(self):
"""
A string representation of the node to be used in visualization.
"""
return f"([{self.exec_task_idx}] {self.method_name} {self.type.viz_str()})"
return f"[{self.exec_task_idx}] {self.method_name} {self.type.viz_str()}"

def __hash__(self):
return hash((self.exec_task_idx, self.type))
Expand Down

0 comments on commit 2385b18

Please sign in to comment.