mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
removing unnecessary typing
This commit is contained in:
parent
3b57aef168
commit
26b3c3f7a8
|
@ -345,8 +345,8 @@ class FreqtradeBot(object):
|
|||
if avaliable_amount < stake_amount:
|
||||
raise DependencyException(
|
||||
'Available balance(%f %s) is lower than stake amount(%f %s)' % (
|
||||
float(avaliable_amount), self.config['stake_currency'],
|
||||
float(stake_amount), self.config['stake_currency'])
|
||||
avaliable_amount, self.config['stake_currency'],
|
||||
stake_amount, self.config['stake_currency'])
|
||||
)
|
||||
|
||||
return float(stake_amount)
|
||||
|
|
Loading…
Reference in New Issue
Block a user