Del vars when used

This commit is contained in:
poka 2020-11-17 02:48:56 +01:00
parent ea05f308b0
commit bb5ace88e4
1 changed files with 3 additions and 0 deletions

View File

@ -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()