From 987dd526658c6e4f1abaa71444471617ea62675d Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Thu, 21 Nov 2024 08:54:07 -0500 Subject: [PATCH] Fix location. --- crates/polars-ops/src/series/ops/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/polars-ops/src/series/ops/mod.rs b/crates/polars-ops/src/series/ops/mod.rs index 6ca699f740ba..40254b97f92a 100644 --- a/crates/polars-ops/src/series/ops/mod.rs +++ b/crates/polars-ops/src/series/ops/mod.rs @@ -85,8 +85,8 @@ pub use floor_divide::*; #[cfg(feature = "fused")] pub use fused::*; pub use horizontal::*; -#[cfg(feature = "index_of")] pub use index::*; +#[cfg(feature = "index_of")] pub use index_of::*; pub use int_range::*; #[cfg(feature = "interpolate")]