Skip to content

Commit 23ba5c9

Browse files
committed
remove prints
1 parent c714ce8 commit 23ba5c9

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

temporalio/contrib/pydantic.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ class PydanticJSONPlainPayloadConverter(EncodingPayloadConverter):
5656
def __init__(self, to_json_options: Optional[ToJsonOptions] = None):
5757
"""Create a new payload converter."""
5858
self._schema_serializer = SchemaSerializer(any_schema())
59-
print("Init:", self._schema_serializer)
6059
self._to_json_options = to_json_options
6160

6261
@property
@@ -72,8 +71,6 @@ def to_payload(self, value: Any) -> Optional[temporalio.api.common.v1.Payload]:
7271
See
7372
https://docs.pydantic.dev/latest/api/pydantic_core/#pydantic_core.to_json.
7473
"""
75-
print("To payload:", self._schema_serializer)
76-
print(f"value:{value}, type:{type(value)}")
7774
data = (
7875
self._schema_serializer.to_json(
7976
value, exclude_unset=self._to_json_options.exclude_unset

0 commit comments

Comments
 (0)