From bb5ace88e4a7c6cb673d91b60422163b316c9b14 Mon Sep 17 00:00:00 2001 From: poka Date: Tue, 17 Nov 2020 02:48:56 +0100 Subject: [PATCH] Del vars when used --- pay-gui.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pay-gui.py b/pay-gui.py index 8c6eec3..d4f0b1e 100755 --- a/pay-gui.py +++ b/pay-gui.py @@ -32,6 +32,9 @@ def ProceedPaiement(): returnSigned = signDoc(returnGen) sendTXDoc(returnSigned) +# del recipient, amount, comment, returnGen, returnSigned + recipient = amount = comment = returnGen = returnSigned = None + sendButton = Button(window, text="Envoyer", command=ProceedPaiement) sendButton.pack()