Fix joblib being in wrong requirements

This commit is contained in:
Matthias
2022-04-23 17:08:34 +02:00
parent 2d07cbce59
commit 8cac0a47cc
4 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,6 @@ from typing import Any, Iterator, List, Union
from typing.io import IO
from urllib.parse import urlparse
import joblib
import rapidjson
from freqtrade.constants import DECIMAL_PER_COIN_FALLBACK, DECIMALS_PER_COIN
@@ -94,6 +93,7 @@ def file_dump_joblib(filename: Path, data: Any, log: bool = True) -> None:
:param data: Object data to save
:return:
"""
import joblib
if log:
logger.info(f'dumping joblib to "{filename}"')