Make flake happy

This commit is contained in:
hroff-1902 2019-12-14 02:58:47 +03:00
parent e7fb951fc5
commit 05aa928e75

View File

@ -365,9 +365,10 @@ class Backtesting:
:param position_stacking: do we allow position stacking? :param position_stacking: do we allow position stacking?
:return: DataFrame with trades (results of backtesting) :return: DataFrame with trades (results of backtesting)
""" """
logger.debug(f"Run backtest, stake_amount: {stake_amount}, " logger.debug(
f"start_date: {start_date}, end_date: {end_date}, " f"Run backtest, stake_amount: {stake_amount}, "
f"max_open_trades: {max_open_trades}, position_stacking: {position_stacking}" f"start_date: {start_date}, end_date: {end_date}, "
f"max_open_trades: {max_open_trades}, position_stacking: {position_stacking}"
) )
trades = [] trades = []
trade_count_lock: Dict = {} trade_count_lock: Dict = {}