Skip to content

Commit ea88aec

Browse files
committed
Fix formatting.
1 parent 3e300a0 commit ea88aec

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

awslambdaric/lambda_runtime_client.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,11 @@ def post_invocation_result(
108108
):
109109
runtime_client.post_invocation_result(
110110
invoke_id,
111-
result_data
112-
if isinstance(result_data, bytes)
113-
else result_data.encode("utf-8"),
111+
(
112+
result_data
113+
if isinstance(result_data, bytes)
114+
else result_data.encode("utf-8")
115+
),
114116
content_type,
115117
)
116118

0 commit comments

Comments
 (0)