Skip to content

Commit f6e6bce

Browse files
committed
fix: fix signature of Graph.simple_cycles(), closes #856
1 parent 64b3e20 commit f6e6bce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_igraph/graphobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17067,7 +17067,7 @@ struct PyMethodDef igraphmodule_Graph_methods[] = {
1706717067
},
1706817068
{"simple_cycles", (PyCFunction) igraphmodule_Graph_simple_cycles,
1706917069
METH_VARARGS | METH_KEYWORDS,
17070-
"simple_cycles(mode=None, min=-1, max=-1, output=\"epath\")\n--\n\n"
17070+
"simple_cycles(mode=None, min=-1, max=-1, output=\"vpath\")\n--\n\n"
1707117071
"Finds simple cycles in a graph\n\n"
1707217072
"@param mode: for directed graphs, specifies how the edge directions\n"
1707317073
" should be taken into account. C{\"all\"} means that the edge directions\n"

0 commit comments

Comments
 (0)