From e46b4576d28b3d24241003e029ac2971152cccc7 Mon Sep 17 00:00:00 2001 From: Vincent Traag Date: Tue, 3 Apr 2018 12:17:39 +0200 Subject: [PATCH] Merge pull request #29 from dafnevk/master Fixed bug in referencing igraph --- src/VertexPartition.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VertexPartition.py b/src/VertexPartition.py index 7788dd9..ddb2561 100644 --- a/src/VertexPartition.py +++ b/src/VertexPartition.py @@ -977,7 +977,7 @@ def Bipartite(graph, resolution_parameter_01, types = list(types) if set(types) != set([0, 1]): - new_type = ig.UniqueIdGenerator() + new_type = _ig.UniqueIdGenerator() types = [new_type[t] for t in types] if set(types) != set([0, 1]):