use Pathlib in the whole script

This commit is contained in:
xmatthias 2018-06-23 19:58:28 +02:00
parent 3cedace2f6
commit f506ebcd62
1 changed files with 1 additions and 2 deletions

View File

@ -25,7 +25,6 @@ Example of usage:
--indicators2 fastk,fastd
"""
import logging
import os
import sys
import json
from pathlib import Path
@ -158,7 +157,7 @@ def plot_analyzed_dataframe(args: Namespace) -> None:
args=args
)
plot(fig, filename=os.path.join('user_data', 'freqtrade-plot.html'))
plot(fig, filename=str(Path('user_data').joinpath('freqtrade-plot.html')))
def generate_graph(pair, trades: pd.DataFrame, data: pd.DataFrame, args) -> tools.make_subplots: