Skip to content

Commit

Permalink
fix(edits): read neighbor cx edges from cache
Browse files Browse the repository at this point in the history
  • Loading branch information
akhileshh committed Sep 26, 2023
1 parent 12bcbed commit 16610c4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pychunkedgraph/graph/edits.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,9 +407,7 @@ def _update_neighbor_cross_edges_single(
layers_d = dict(zip(layer_edges[:, 1], [layer] * len(layer_edges[:, 1])))
counterpart_layers.update(layers_d)

cp_cx_edges_d = cg.get_cross_chunk_edges(
counterparts, time_stamp=parent_ts, raw_only=True
)
cp_cx_edges_d = cg.get_cross_chunk_edges(counterparts, time_stamp=parent_ts)
updated_counterparts = {}
for counterpart, edges_d in cp_cx_edges_d.items():
val_dict = {}
Expand Down

0 comments on commit 16610c4

Please sign in to comment.