class WeeksConverter:
    regex = "[0-9]{0,2}"

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