Skip to content
Open
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
4 changes: 2 additions & 2 deletions hta/common/execution_trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def add_et_column(trace_df: pd.DataFrame, et: ExecutionTrace, column: str) -> No
return
if column == "op_schema":

def map_func(node_id):
def map_func(node_id) -> str:
return et.nodes[node_id].op_schema

elif column == "input_shapes":
Expand All @@ -182,7 +182,7 @@ def map_func(node_id):

elif column == "output_types":

def map_func(node_id):
def map_func(node_id) -> List[str]:
return et.nodes[node_id].output_types

elif column == "et_node_name":
Expand Down
Loading