fix checks

Should not make cosmetic changes right in the github editor without local smoketests...
This commit is contained in:
hroff-1902 2019-02-10 22:09:11 +03:00 committed by GitHub
parent b91981f0aa
commit 08d35f3e15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -267,8 +267,8 @@ class FreqtradeBot(object):
# Check if stake_amount is fulfilled
if avaliable_amount < stake_amount:
raise DependencyException(
f'Available balance({avaliable_amount} {self.config['stake_currency']}) is lower than '
f'stake amount({stake_amount} {self.config['stake_currency']})'
f"Available balance({avaliable_amount} {self.config['stake_currency']}) is lower than "
f"stake amount({stake_amount} {self.config['stake_currency']})"
)
return stake_amount