Skip to content

Commit be07fdf

Browse files
authored
removed print statement (#228)
1 parent 9dbeac5 commit be07fdf

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pydatastructs/graphs/adjacency_matrix.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ def remove_vertex(self, node):
5151

5252
def add_edge(self, source, target, cost=None):
5353
source, target = str(source), str(target)
54-
print(source, target)
5554
self.matrix[source][target] = True
5655
if cost is not None:
5756
self.edge_weights[source + "_" + target] = \

0 commit comments

Comments
 (0)