Source code for flytekitplugins.pandera.config
"""Pandera validation configuration."""
from dataclasses import dataclass
from typing import Literal
[docs]
@dataclass
class ValidationConfig:
# determine how to handle validation errors in the Flyte type transformer
on_error: Literal["raise", "warn"] = "raise"