We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 757fcbd commit 39a1cedCopy full SHA for 39a1ced
python/graphscope/framework/utils.py
@@ -796,9 +796,9 @@ def PbDataType2InfoType(str):
796
)
797
with open(output_path, "w") as f:
798
yaml.dump(info, f, Dumper=Dumper, default_flow_style=False)
799
- graph_info["edges"].append(
800
- r.source + "_" + edge_label + "_" + r.destination + ".edge.yml"
801
- )
+ graph_info["edges"].append(
+ r.source + "_" + edge_label + "_" + r.destination + ".edge.yml"
+ )
802
graph_info_path = os.path.join(path, graph_name + ".graph.yml")
803
with open(graph_info_path, "w") as f:
804
yaml.dump(graph_info, f, Dumper=Dumper, default_flow_style=False)
0 commit comments