Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions python/ray/dag/dag_node_operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __repr__(self):
f" type: {self.type})"
)

def vis_str(self):
def viz_str(self):
"""
A string representation of the node to be used in visualization.
"""
Expand Down Expand Up @@ -223,10 +223,7 @@ def viz_str(self):
"""
A string representation of the node to be used in visualization.
"""
return (
f"[{self.operation.exec_task_idx}] "
f"{self.operation.method_name} {self.operation.type.viz_str()}"
)
return self.operation.viz_str()

@property
def _actor_id(self):
Expand Down