From f3af6b8eec814f679d39787654fc8969b3040f40 Mon Sep 17 00:00:00 2001 From: Lucas Jeub Date: Fri, 24 May 2024 12:21:31 +0200 Subject: [PATCH] add missing feature gate --- python/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/python/src/lib.rs b/python/src/lib.rs index bfe089b579..3d159efea0 100644 --- a/python/src/lib.rs +++ b/python/src/lib.rs @@ -25,6 +25,7 @@ use raphtory_core::python::{ }; use raphtory_storage::python::packages::algorithms::*; +#[cfg(feature = "arrow")] use raphtory_core::python::graph::arrow::{PyArrowGraph, PyGraphQuery, PyState}; macro_rules! add_functions {