From f9115a036fa132d1a4a2ae3dfe9628ed1f1d6ed5 Mon Sep 17 00:00:00 2001 From: axiomcura Date: Wed, 18 Dec 2024 13:17:49 -0700 Subject: [PATCH] updated error message --- src/copairs/map/filter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/copairs/map/filter.py b/src/copairs/map/filter.py index 0cbec43..6c7d71c 100644 --- a/src/copairs/map/filter.py +++ b/src/copairs/map/filter.py @@ -37,7 +37,7 @@ def validate_pipeline_input( # Check for null values in the feature matrix if np.isnan(feats).any(): - raise ValueError("Features should not contain null values.") + raise ValueError("features should not have null values.") def flatten_str_list(*args):