Files
rendercv/rendercv/reader/entry_validators.py
2024-07-03 01:30:54 +03:00

17 lines
353 B
Python

"""
The `rendercv.data_models.validators` module contains all the functions used to validate
the data models of RenderCV, in addition to Pydantic inner validation.
"""
import re
from datetime import date as Date
from typing import Optional
import pydantic
from . import utilities as util
from .entry_types import StartDate, EndDate, ArbitraryDate