flake8 passing, use pathlib in lieu of os.path to accommodate windows/mac OS

This commit is contained in:
robcaulk
2022-05-04 17:42:34 +02:00
parent 93cf4cc262
commit 2a3347bc12
7 changed files with 593 additions and 439 deletions

View File

@@ -3,10 +3,10 @@ from freqtrade.resolvers.freqaimodel_resolver import FreqaiModelResolver
class CustomModel:
"""
A bridge between the user defined IFreqaiModel class
A bridge between the user defined IFreqaiModel class
and the strategy.
"""
def __init__(self,config):
def __init__(self, config):
self.bridge = FreqaiModelResolver.load_freqaimodel(config)