Skip to content

Commit

Permalink
📝 rtd
Browse files Browse the repository at this point in the history
  • Loading branch information
GiulioRossetti committed Aug 28, 2023
1 parent a455753 commit 956b49b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cdlib/algorithms/internal/pycondor.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
import numpy as np
import pandas as pd
from igraph import *

try:
from igraph import Graph
except ModuleNotFoundError:
raise("This module requires the igraph package. Please install it with pip install python-igraph.")



def condor_object(net):
Expand Down

0 comments on commit 956b49b

Please sign in to comment.