Skip to content

Commit 404f1bd

Browse files
[ENH] comment prints in sulcal_graph
1 parent dde22d6 commit 404f1bd

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

slam/sulcal_graph.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -119,15 +119,15 @@ def get_sulcal_graph(adjacency, basins, ridges, save=True, outdir=None):
119119
i = labels.index(pair[0])
120120
j = labels.index(pair[1])
121121
edge_attributes[i, j] = values # add all dictionary values
122-
print(values)
123-
for ed in range(len(graph.edges)):
124-
print("Edge "+str(ed)+" attributes:",
125-
graph.edges[list(graph.edges)[ed]].keys())
122+
# print(values)
123+
# for ed in range(len(graph.edges)):
124+
# print("Edge "+str(ed)+" attributes:",
125+
# graph.edges[list(graph.edges)[ed]].keys())
126126

127127
nx.set_edge_attributes(graph, edge_attributes)
128-
for ed in range(len(graph.edges)):
129-
print("Edge "+str(ed)+" attributes:",
130-
graph.edges[list(graph.edges)[ed]].keys())
128+
# for ed in range(len(graph.edges)):
129+
# print("Edge "+str(ed)+" attributes:",
130+
# graph.edges[list(graph.edges)[ed]].keys())
131131

132132
if save:
133133
if not outdir:

0 commit comments

Comments
 (0)