From 4226281a4fa28f932fb52be23080ef89504f024d Mon Sep 17 00:00:00 2001 From: Christian Gutschow Date: Tue, 23 Jul 2024 15:35:51 +0200 Subject: [PATCH] update doc string --- hepdata_lib/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hepdata_lib/helpers.py b/hepdata_lib/helpers.py index 1e10e85e..2a2e6416 100644 --- a/hepdata_lib/helpers.py +++ b/hepdata_lib/helpers.py @@ -276,7 +276,7 @@ def sanitize_value(value): :param value: User-side input value to sanitize. :type value: string, int, or castable to float - Strings and integers are left alone, + Strings, integers and None are left alone, everything else is converted to float. """ if isinstance(value,str):