about summary refs log tree commit diff
path: root/quality_control/standard_error.py
diff options
context:
space:
mode:
Diffstat (limited to 'quality_control/standard_error.py')
-rw-r--r--quality_control/standard_error.py15
1 files changed, 6 insertions, 9 deletions
diff --git a/quality_control/standard_error.py b/quality_control/standard_error.py
index aa7df3c..7e059ad 100644
--- a/quality_control/standard_error.py
+++ b/quality_control/standard_error.py
@@ -1,7 +1,7 @@
 """Contain logic for checking standard error files"""
-import re
 from typing import Union
 
+from .utils import cell_error
 from .errors import InvalidValue
 
 def invalid_value(
@@ -12,12 +12,9 @@ def invalid_value(
     `val` is not a valid input for standard error files, otherwise, it returns
     `None`.
     """
-    if re.search(r"^[0-9]+\.[0-9]{6,}$", val):
-        return None
-    if re.search(r"^0\.0+$", val) or re.search("^0+$", val):
-        return None
-    return InvalidValue(
-        line_number, column_number, val, (
+    return cell_error(
+        r"^[0-9]+\.[0-9]{6,}$", val, line=line_number, column=column_number,
+        value=val, message=(
             f"Invalid value '{val}'. "
-            "Expected string representing a number with at least six decimal "
-            "places."))
+            "Expected string representing a number with at least six "
+            "decimal places."))