From c362dc197bfb9bab47ba044b801473ae4c96b58e Mon Sep 17 00:00:00 2001 From: ok300 <106775972+ok300@users.noreply.github.com> Date: Mon, 13 Nov 2023 12:13:05 +0100 Subject: [PATCH] Fix indentation --- snippets/python_snippets/src/receive_payment.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snippets/python_snippets/src/receive_payment.py b/snippets/python_snippets/src/receive_payment.py index 4dae89b..3bcd7dd 100644 --- a/snippets/python_snippets/src/receive_payment.py +++ b/snippets/python_snippets/src/receive_payment.py @@ -5,8 +5,8 @@ def receive_payment(sdk_services): try: # ANCHOR: receive-payment req = breez_sdk.ReceivePaymentRequest( - amount_msat=3000000, - description="Invoice for 3 000 000 sats") + amount_msat=3000000, + description="Invoice for 3 000 000 sats") result = sdk_services.receive_payment(req) # ANCHOR_END: receive-payment return result