Avoid \ linebreak

This commit is contained in:
Matthias 2020-07-03 20:32:04 +02:00
parent ea5e47657a
commit 1fc4451d2f
1 changed files with 2 additions and 2 deletions

View File

@ -17,8 +17,8 @@ logger = logging.getLogger(__name__)
def store_backtest_stats(recordfilename: Path, stats: Dict[str, DataFrame]) -> None:
if recordfilename.is_dir():
filename = recordfilename / \
f'backtest-result-{datetime.now().strftime("%Y-%m-%d_%H-%M-%S")}.json'
filename = (recordfilename /
f'backtest-result-{datetime.now().strftime("%Y-%m-%d_%H-%M-%S")}.json')
else:
filename = Path.joinpath(
recordfilename.parent,