Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dataframely/_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ class Dialect: # type: ignore # noqa: N801

try:
import pydantic
except ImportError:
except ImportError: # pragma: no cover
pydantic = _DummyModule("pydantic") # type: ignore

try:
from pydantic_core import core_schema as pydantic_core_schema
except ImportError:
except ImportError: # pragma: no cover
pydantic_core_schema = _DummyModule("pydantic_core_schema") # type: ignore

# --------------------------------------- POLARS ------------------------------------- #
Expand Down
Loading
Loading