class DaysConverter:
    regex = "[0-9]{0,3}"

    def to_python(self, value):
        return int(value)