We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf78bdd commit 693b258Copy full SHA for 693b258
.pre-commit-config.yaml
@@ -5,7 +5,7 @@ ci:
5
6
repos:
7
- repo: https://github.com/astral-sh/ruff-pre-commit
8
- rev: v0.7.4
+ rev: v0.8.1
9
hooks:
10
- id: ruff
11
args: [--fix]
src/pydantic_compat/__init__.py
@@ -15,15 +15,15 @@
15
__author__ = "Talley Lambert"
16
__email__ = "[email protected]"
17
__all__ = [
18
+ "PYDANTIC2",
19
+ "BaseModel",
20
+ "Field",
21
+ "PydanticCompatMixin",
22
"__version__",
23
"field_validator",
24
"model_validator",
- "PYDANTIC2",
- "PydanticCompatMixin",
25
"root_validator",
26
"validator",
- "Field",
- "BaseModel",
27
]
28
29
from ._shared import PYDANTIC2
0 commit comments