We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
dag
1 parent 52c0d77 commit 10c1d7fCopy full SHA for 10c1d7f
1 file changed
graphkit/network.py
@@ -107,7 +107,7 @@ def compile(self):
107
self.steps = []
108
109
# create an execution order such that each layer's needs are provided.
110
- ordered_nodes = list(nx.dag.topological_sort(self.graph))
+ ordered_nodes = list(nx.topological_sort(self.graph))
111
112
# add Operations evaluation steps, and instructions to free data.
113
for i, node in enumerate(ordered_nodes):
0 commit comments