Skip to content

Commit 37a40d0

Browse files
committed
Fixed incorrect annotations
1 parent e40a128 commit 37a40d0

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

cyaron/graph.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,6 @@ def add_edge(self, x, y, **kwargs):
8989
int y -> the end vertex
9090
**kwargs(Keyword args):
9191
int weight = 1 -> the weight
92-
bool directed = True -> whether the graph is directed(true:directed,false:not directed)
93-
not directed means if you added the edge x->y, you would also add the edge y->x
9492
"""
9593
weight = kwargs.get("weight", 1)
9694
self.__add_edge(x, y, weight)

0 commit comments

Comments
 (0)