"docs/source/ko/using-diffusers/depth2img.mdx" did not exist on "75d53cc83966b4046e5a329ddf7baa6aa24f52e2"
Commit 16da76c4 authored by Gan Quan's avatar Gan Quan
Browse files

fix #81

parent 5567f4a4
......@@ -884,7 +884,7 @@ class DGLGraph(object):
def _batch_update_edge(self, u, v, edge_func):
if is_all(u) and is_all(v):
u, v = self._graph.edges()
u, v, _ = self._graph.edges()
# call the UDF
src_reprs = self.get_n_repr(u)
dst_reprs = self.get_n_repr(v)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment