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 ef79505 commit 93e4db8Copy full SHA for 93e4db8
temporalio/contrib/pydantic/converter.py
@@ -42,11 +42,9 @@ class PydanticPayloadConverter(CompositePayloadConverter):
42
def __init__(self) -> None:
43
super().__init__(
44
*(
45
- (
46
- c
47
- if not isinstance(c, JSONPlainPayloadConverter)
48
- else PydanticJSONPayloadConverter()
49
- )
+ c
+ if not isinstance(c, JSONPlainPayloadConverter)
+ else PydanticJSONPayloadConverter()
50
for c in DefaultPayloadConverter.default_encoding_payload_converters
51
)
52
0 commit comments