Skip to content

Commit

Permalink
fixed after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
miratepuffin committed Aug 21, 2024
1 parent 1065385 commit 6c5c564
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions python/python/raphtory/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -1649,7 +1649,7 @@ class Graph:
edge_label=None,
colour_nodes_by_type=False,
notebook=False,
**kwargs
**kwargs,
):
"""
Draw a graph with PyVis.
Expand Down Expand Up @@ -4143,7 +4143,7 @@ class PersistentGraph:
edge_label=None,
colour_nodes_by_type=False,
notebook=False,
**kwargs
**kwargs,
):
"""
Draw a graph with PyVis.
Expand Down
10 changes: 9 additions & 1 deletion raphtory/src/python/graph/graph_with_deletions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,15 @@ impl PyPersistentGraph {
layer: Option<&str>,
layer_col: Option<&str>,
) -> Result<(), GraphError> {
load_edge_deletions_from_pandas(&self.graph.0, df, time, src, dst, layer, layer_col)
load_edge_deletions_from_pandas(
self.graph.core_graph(),
df,
time,
src,
dst,
layer,
layer_col,
)
}

/// Load edges deletions from a Parquet file into the graph.
Expand Down

0 comments on commit 6c5c564

Please sign in to comment.