Skip to content

Commit

Permalink
Merge 62047ee into dd09e2a
Browse files Browse the repository at this point in the history
  • Loading branch information
Yquetzal authored Oct 13, 2019
2 parents dd09e2a + 62047ee commit 8936ec5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cdlib/algorithms/overlapping_partition.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ def angel(g, threshold, min_community_size=3):
.. note:: Reference implementation: https://github.com/GiulioRossetti/ANGEL
"""

if ig is None:
raise ModuleNotFoundError("Optional dependency not satisfied: install igraph to use the selected feature.")
if Angel is None:
raise ModuleNotFoundError("Optional dependency not satisfied: install angel-cd library to use the selected feature (likely pip install angel-cd).")

g = convert_graph_formats(g, ig.Graph)
with suppress_stdout():
Expand Down

0 comments on commit 8936ec5

Please sign in to comment.