Skip to content

Commit cfd6841

Browse files
committed
fix(edits): read neighbor cx edges from cache
1 parent 6a8687a commit cfd6841

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pychunkedgraph/graph/edits.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -407,9 +407,7 @@ def _update_neighbor_cross_edges_single(
407407
layers_d = dict(zip(layer_edges[:, 1], [layer] * len(layer_edges[:, 1])))
408408
counterpart_layers.update(layers_d)
409409

410-
cp_cx_edges_d = cg.get_cross_chunk_edges(
411-
counterparts, time_stamp=parent_ts, raw_only=True
412-
)
410+
cp_cx_edges_d = cg.get_cross_chunk_edges(counterparts, time_stamp=parent_ts)
413411
updated_counterparts = {}
414412
for counterpart, edges_d in cp_cx_edges_d.items():
415413
val_dict = {}

0 commit comments

Comments
 (0)