diff --git a/pywhy_graphs/algorithms/generic.py b/pywhy_graphs/algorithms/generic.py index 9a13fee2..07e836ac 100644 --- a/pywhy_graphs/algorithms/generic.py +++ b/pywhy_graphs/algorithms/generic.py @@ -1018,7 +1018,7 @@ def proper_possibly_directed_path(G, X: Optional[Set], Y: Optional[Set]): >>> X = {"Y", "A"} >>> pywhy_graphs.proper_possibly_directed_path(pag, X, Y) {('A', 'G', 'C', 'H'), ('Y', 'X', 'Z', 'C', 'H'), ('Y', 'X', 'Z', 'K'), ('A', 'G', 'C', 'Z', 'K')} - + """ if isinstance(X, set):