Skip to content

Commit

Permalink
make IntoDynamic public (#1029)
Browse files Browse the repository at this point in the history
  • Loading branch information
ljeub-pometry authored Jun 7, 2023
1 parent 043fdc7 commit a38c131
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion py-raphtory/src/dynamic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use std::sync::Arc;
#[derive(Clone)]
pub struct DynamicGraph(Arc<dyn GraphViewInternalOps + Send + Sync + 'static>);

pub(crate) trait IntoDynamic {
pub trait IntoDynamic {
fn into_dynamic(self) -> DynamicGraph;
}

Expand Down
2 changes: 1 addition & 1 deletion py-raphtory/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ extern crate core;
mod macros;

pub mod algorithms;
mod dynamic;
pub mod dynamic;
pub mod edge;
pub mod graph;
pub mod graph_gen;
Expand Down

0 comments on commit a38c131

Please sign in to comment.