From 9858399b34e3e613628009c1f710a28afd44b4fb Mon Sep 17 00:00:00 2001 From: Reid Johnson Date: Sat, 31 Aug 2024 21:05:56 -0700 Subject: [PATCH] Remove noexcept --- quantile_forest/_utils.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantile_forest/_utils.pyx b/quantile_forest/_utils.pyx index 97b5680..4c153e6 100755 --- a/quantile_forest/_utils.pyx +++ b/quantile_forest/_utils.pyx @@ -176,7 +176,7 @@ cpdef map_indices_to_leaves( cnp.ndarray[intp_t, ndim=2] bootstrap_indices, vector[intp_t] leaf_indices, vector[vector[intp_t]] leaf_values_list, -) noexcept: +): """Return a mapping of training sample indices to a tree's leaf nodes. Parameters