removing unnecessary typing
This commit is contained in:
parent
3b57aef168
commit
26b3c3f7a8
@ -345,8 +345,8 @@ class FreqtradeBot(object):
|
|||||||
if avaliable_amount < stake_amount:
|
if avaliable_amount < stake_amount:
|
||||||
raise DependencyException(
|
raise DependencyException(
|
||||||
'Available balance(%f %s) is lower than stake amount(%f %s)' % (
|
'Available balance(%f %s) is lower than stake amount(%f %s)' % (
|
||||||
float(avaliable_amount), self.config['stake_currency'],
|
avaliable_amount, self.config['stake_currency'],
|
||||||
float(stake_amount), self.config['stake_currency'])
|
stake_amount, self.config['stake_currency'])
|
||||||
)
|
)
|
||||||
|
|
||||||
return float(stake_amount)
|
return float(stake_amount)
|
||||||
|
Loading…
Reference in New Issue
Block a user