Fixing the error message in self-cycle cases.

Signed-off-by: Ahmet Kapkic <ahmetkapkic@gmail.com>
This commit is contained in:
Ahmet Kapkic 2024-10-23 15:42:53 -07:00 коммит произвёл Patrick Blöbaum
Родитель 07587d03d4
Коммит e79d01280b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -42,7 +42,7 @@ def plot_causal_graph_networkx(
if edge[0] == edge[1]:
raise ValueError(
"Node %s has a self-cycle, i.e. a node pointing to itself. Plotting self-cycles is "
"currently only supported for plots using Graphviz! Consider installing the corresponding"
"currently only supported for plots using Graphviz! Consider installing the corresponding "
"requirements." % edge[0]
)