[BUG] all_paths*
methods from differt.rt.graph
do not allow from_
to be a keyword argument
#69
Labels
bug
Something isn't working
E.g.,
DiGraph.all_paths(from_=0, ...)
does not work as the text signature (from_
) differs from the true signature (from
). This is an issue becausefrom
cannot be used in Python.Possible solutions:
from_
and others explicitly positional-only parameters.from
tofrom_
inside Rust code (at least in the function signatures).The text was updated successfully, but these errors were encountered: