Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
acezen committed Oct 25, 2021
1 parent 89a1f41 commit df27074
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions coordinator/gscoordinator/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,10 @@ def _pre_process_for_output_graph_op(op, op_result_pool, key_to_op, **kwargs):

def _pre_process_for_project_to_simple_op(op, op_result_pool, key_to_op, **kwargs):
# for nx graph
if op.attr[types_pb2.GRAPH_TYPE].graph_type in (graph_def_pb2.DYNAMIC_PROJECTED, graph_def_pb2.ARROW_LABEL_PROJECTED):
if op.attr[types_pb2.GRAPH_TYPE].graph_type in (
graph_def_pb2.DYNAMIC_PROJECTED,
graph_def_pb2.ARROW_LABEL_PROJECTED,
):
return
assert len(op.parents) == 1
# get parent graph schema
Expand Down Expand Up @@ -1118,7 +1121,7 @@ def _codegen_app_info(attr, meta_file: str):
),
graph_def_pb2.ARROW_LABEL_PROJECTED: (
"gs::ArrowLabelProjectedFragment",
"core/fragment/arrow_label_projected_fragment.h"
"core/fragment/arrow_label_projected_fragment.h",
),
}

Expand Down

0 comments on commit df27074

Please sign in to comment.