From 9ae3c5d0db6e99b4acaf67da5af33c72e24be602 Mon Sep 17 00:00:00 2001 From: miratepuffin Date: Tue, 2 Jul 2024 00:25:30 +0100 Subject: [PATCH] locked graphql python module behind feature --- raphtory-graphql/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/raphtory-graphql/src/lib.rs b/raphtory-graphql/src/lib.rs index 85b4298d3e..1304010458 100644 --- a/raphtory-graphql/src/lib.rs +++ b/raphtory-graphql/src/lib.rs @@ -10,6 +10,8 @@ pub mod server; pub mod azure_auth; mod data; + +#[cfg(feature = "python")] pub mod python; #[derive(thiserror::Error, Debug)]