Skip to content

Commit 1f21c56

Browse files
committed
fix docstring example
1 parent 848023b commit 1f21c56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pydantic_core/core_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2859,7 +2859,7 @@ class MyTypedDict(TypedDict):
28592859
a: str
28602860
28612861
wrapper_schema = core_schema.typed_dict_schema(
2862-
{'a': core_schema.typed_dict_field(core_schema.str_schema())}
2862+
{'a': core_schema.typed_dict_field(core_schema.str_schema())},
28632863
cls=MyTypedDict
28642864
)
28652865
v = SchemaValidator(wrapper_schema)

0 commit comments

Comments
 (0)