Files
zenml/venv/lib/python3.9/site-packages/pydantic/experimental/__init__.py
Christian Mantha 2ca0b9ef7c star
2026-03-02 19:10:52 -05:00

11 lines
328 B
Python

"""The "experimental" module of pydantic contains potential new features that are subject to change."""
import warnings
from pydantic.warnings import PydanticExperimentalWarning
warnings.warn(
'This module is experimental, its contents are subject to change and deprecation.',
category=PydanticExperimentalWarning,
)