We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I'm using networkx 2.6.1 and got two errors in pytopkapi/pretreatment.py. To fix the errors I had to change:
change line 194: from ar_label_sort = np.array(nx.topological_sort(network_dag)) to ar_label_sort = np.array(list(nx.topological_sort(network_dag)))
ar_label_sort = np.array(nx.topological_sort(network_dag))
ar_label_sort = np.array(list(nx.topological_sort(network_dag)))
change line 201: from dag_copy = nx.copy.deepcopy(network_dag) to dag_copy = network_dag.copy()
dag_copy = nx.copy.deepcopy(network_dag)
dag_copy = network_dag.copy()
The text was updated successfully, but these errors were encountered:
heavens above! thank you!!
Sorry, something went wrong.
No branches or pull requests
Hi,
I'm using networkx 2.6.1 and got two errors in pytopkapi/pretreatment.py.
To fix the errors I had to change:
change line 194:
from
ar_label_sort = np.array(nx.topological_sort(network_dag))
to
ar_label_sort = np.array(list(nx.topological_sort(network_dag)))
change line 201:
from
dag_copy = nx.copy.deepcopy(network_dag)
to
dag_copy = network_dag.copy()
The text was updated successfully, but these errors were encountered: