removing unnecessary typing

This commit is contained in:
misagh 2018-10-02 12:20:30 +02:00
parent 3b57aef168
commit 26b3c3f7a8
1 changed files with 2 additions and 2 deletions

View File

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