Skip to content

Commit 77064ef

Browse files
authored
Fix typechecking (#950)
Pydantic 3.12 added a new param to some functions
1 parent da21100 commit 77064ef

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

gel/_internal/_qbmodel/_pydantic/_utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ def model_dump_signature(
138138
exclude_unset: bool = False,
139139
exclude_defaults: bool = False,
140140
exclude_none: bool = False,
141+
exclude_computed_fields: bool = False,
141142
round_trip: bool = False,
142143
warnings: bool | Literal["none", "warn", "error"] = True,
143144
fallback: Callable[[Any], Any] | None = None,
@@ -159,6 +160,7 @@ def model_dump_json_signature(
159160
exclude_unset: bool = False,
160161
exclude_defaults: bool = False,
161162
exclude_none: bool = False,
163+
exclude_computed_fields: bool = False,
162164
round_trip: bool = False,
163165
warnings: bool | Literal["none", "warn", "error"] = True,
164166
fallback: Callable[[Any], Any] | None = None,

0 commit comments

Comments
 (0)