From 08d35f3e150e1e7096059d490c1b77ba4d91059a Mon Sep 17 00:00:00 2001 From: hroff-1902 <47309513+hroff-1902@users.noreply.github.com> Date: Sun, 10 Feb 2019 22:09:11 +0300 Subject: [PATCH] fix checks Should not make cosmetic changes right in the github editor without local smoketests... --- freqtrade/freqtradebot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index 15c6578ab..4535c22a7 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -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