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)