Skip to content

Commit

Permalink
Merge pull request #29 from dafnevk/master
Browse files Browse the repository at this point in the history
Fixed bug in referencing igraph
  • Loading branch information
vtraag committed Apr 3, 2018
1 parent d83ed42 commit e46b457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VertexPartition.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]):
Expand Down

0 comments on commit e46b457

Please sign in to comment.