Skip to content

Commit 93e4db8

Browse files
committed
Cleanup
1 parent ef79505 commit 93e4db8

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

temporalio/contrib/pydantic/converter.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,9 @@ class PydanticPayloadConverter(CompositePayloadConverter):
4242
def __init__(self) -> None:
4343
super().__init__(
4444
*(
45-
(
46-
c
47-
if not isinstance(c, JSONPlainPayloadConverter)
48-
else PydanticJSONPayloadConverter()
49-
)
45+
c
46+
if not isinstance(c, JSONPlainPayloadConverter)
47+
else PydanticJSONPayloadConverter()
5048
for c in DefaultPayloadConverter.default_encoding_payload_converters
5149
)
5250
)

0 commit comments

Comments
 (0)