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