From c6fed4e4931d1b9e4cbab813a1b1eb48cdc8c108 Mon Sep 17 00:00:00 2001 From: hroff-1902 Date: Wed, 19 Jun 2019 02:42:29 +0300 Subject: [PATCH] make flake happy --- freqtrade/arguments.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/freqtrade/arguments.py b/freqtrade/arguments.py index 5b65443de..01182f2df 100644 --- a/freqtrade/arguments.py +++ b/freqtrade/arguments.py @@ -493,16 +493,16 @@ class Arguments(object): parser.add_argument( '--indicators1', - help='Set indicators from your strategy you want in the first row of the graph. Separate ' - 'them with a coma. E.g: ema3,ema5 (default: %(default)s)', + help='Set indicators from your strategy you want in the first row of the graph. ' + 'Separate them with a coma. E.g: ema3,ema5 (default: %(default)s)', default='sma,ema3,ema5', dest='indicators1', ) parser.add_argument( '--indicators2', - help='Set indicators from your strategy you want in the third row of the graph. Separate ' - 'them with a coma. E.g: fastd,fastk (default: %(default)s)', + help='Set indicators from your strategy you want in the third row of the graph. ' + 'Separate them with a coma. E.g: fastd,fastk (default: %(default)s)', default='macd,macdsignal', dest='indicators2', )