aboutsummaryrefslogtreecommitdiff
path: root/quality_control/average.py
blob: 9ca16a9d92d7abef248657097001119ae8016567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""Contain logic for checking average files"""
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 averages"""
    if re.search(r"^[0-9]+\.[0-9]{3}$", val):
        return float(val)
    raise InvalidCellValue(
        f"Invalid value '{val}'. "
        "Expected string representing a number with exactly three decimal "
        "places.")

def invalid_value(line_number: int, column_number: int, val: str) -> Union[
        InvalidValue, None]:
    if re.search(r"^[0-9]+\.[0-9]{3}$", val):
        return None
    return InvalidValue(
        line_number, column_number, val, (
            f"Invalid value '{val}'. "
            "Expected string representing a number with exactly three decimal "
            "places."))