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)