Skip to content

Commit 0066ca7

Browse files
committed
change return type pydantic field
1 parent 1a9eb3e commit 0066ca7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

record_api/apis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ class Signature(BaseModel):
375375

376376
metadata: typing.Dict[str, int] = pydantic.Field(default_factory=dict)
377377
return_type: typing.Optional[typing.Dict[str, typing.Union[str, typing.Dict]]] = pydantic.Field(
378-
default_factory=type(None)
378+
default_factory=dict
379379
)
380380

381381
@pydantic.validator("pos_only_required")

0 commit comments

Comments
 (0)