From 347ca2fe50225b4736e69bb86d8b278818be40ac Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Wed, 18 May 2022 17:34:55 +0300 Subject: Remove obsoleted code. Fix linting errors. Remove the old code that relied on exceptions to parse errors in the uploaded files. --- quality_control/standard_error.py | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) (limited to 'quality_control/standard_error.py') diff --git a/quality_control/standard_error.py b/quality_control/standard_error.py index 022cc9b..c866993 100644 --- a/quality_control/standard_error.py +++ b/quality_control/standard_error.py @@ -3,19 +3,10 @@ import re from typing import Union from .errors import InvalidValue -from .errors import InvalidCellValue -def valid_value(val): - """Checks whether `val` is a valid value for standard errors""" - if re.search(r"^[0-9]+\.[0-9]{6,}$", val): - return float(val) - raise InvalidCellValue( - f"Invalid value '{val}'. " - "Expected string representing a number with at least six decimal " - "places.") - -def invalid_value(line_number: int, column_number: int, val: str) -> Union[ - InvalidValue, None]: +def invalid_value( + line_number: int, column_number: int, val: str) -> Union[ + InvalidValue, None]: """ Returns a `quality_control.errors.InvalidValue` object in the case where `val` is not a valid input for standard error files, otherwise, it returns -- cgit v1.2.3