Skip to content

Commit f0d735f

Browse files
committed
remove string formatting from decorated response
1 parent f84fb0e commit f0d735f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client_encryption/api_encryption.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def _decrypt_payload(self, headers, body):
7979
return body
8080

8181
decrypted_body = decrypt_payload(body, conf, params)
82-
payload = json.dumps(decrypted_body, indent=4).encode('utf-8')
82+
payload = json.dumps(decrypted_body).encode('utf-8')
8383

8484
return payload
8585

0 commit comments

Comments
 (0)