From 56a572c4ee66421b3840245336259ea23036f1a2 Mon Sep 17 00:00:00 2001 From: einarr Date: Tue, 8 Jan 2008 10:19:57 +0000 Subject: [PATCH] Removed unnecessary line from from_networkx. --- fluents/dataset.py | 1 - 1 file changed, 1 deletion(-) diff --git a/fluents/dataset.py b/fluents/dataset.py index 4bfe83e..d871b4e 100644 --- a/fluents/dataset.py +++ b/fluents/dataset.py @@ -392,7 +392,6 @@ class GraphDataset(Dataset): if isinstance(G, nx.DiGraph): G = nx.XDiGraph(G) - G = G.to_directed() elif isinstance(G, nx.Graph): G = nx.XGraph(G)