From 88beeb98d0ac8688df9377ab9db74c0ed70863a0 Mon Sep 17 00:00:00 2001 From: Gambaard <65023788+Gambaard@users.noreply.github.com> Date: Sun, 7 Nov 2021 15:16:52 +0100 Subject: [PATCH] Update prepare-payment.py Added space for readability --- content/_code-samples/get-started/py/prepare-payment.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/_code-samples/get-started/py/prepare-payment.py b/content/_code-samples/get-started/py/prepare-payment.py index 02932ddb37..7d4cdb5b3c 100644 --- a/content/_code-samples/get-started/py/prepare-payment.py +++ b/content/_code-samples/get-started/py/prepare-payment.py @@ -35,7 +35,7 @@ print(my_tx_payment) # Sign the transaction from xrpl.transaction import safe_sign_and_autofill_transaction -my_tx_payment_signed = safe_sign_and_autofill_transaction(my_tx_payment,test_wallet, client) +my_tx_payment_signed = safe_sign_and_autofill_transaction(my_tx_payment, test_wallet, client) # Print signed tx print("Signed tx:", my_tx_payment_signed) @@ -46,4 +46,4 @@ from xrpl.transaction import send_reliable_submission tx_response = send_reliable_submission(my_tx_payment_signed, client) # Print tx response -print("Tx response:", tx_response) \ No newline at end of file +print("Tx response:", tx_response)