From e0d58c503013d942adb4b4b467f541e152aefc17 Mon Sep 17 00:00:00 2001 From: ph4z Date: Fri, 24 Jan 2020 20:22:32 +0100 Subject: [PATCH] Fix object formatting fees used as amount because of missing parameter in text variable. --- bfxapi/models/withdraw.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bfxapi/models/withdraw.py b/bfxapi/models/withdraw.py index 9412d3f..7b2d136 100644 --- a/bfxapi/models/withdraw.py +++ b/bfxapi/models/withdraw.py @@ -45,7 +45,7 @@ class Withdraw: return Withdraw(w_id, method, wallet, amount) def __str__(self): - ''' Allow us to print the Transfer object in a pretty format ''' - text = "Withdraw " + ''' Allow us to print the Withdraw object in a pretty format ''' + text = "Withdraw " return text.format(self.id, self.wallet, self.method, self.amount, self.fee)