mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
backtest_live_models - fix typo
This commit is contained in:
parent
22bef71d5d
commit
0318ca9f12
|
@ -4,7 +4,7 @@ FreqAI generic functions
|
|||
import logging
|
||||
from datetime import datetime, timezone
|
||||
from pathlib import Path
|
||||
from typing import Any, Dict
|
||||
from typing import Any, Dict, Tuple
|
||||
|
||||
from freqtrade.configuration import TimeRange
|
||||
from freqtrade.constants import Config
|
||||
|
@ -25,7 +25,7 @@ def get_full_model_path(config: Config) -> Path:
|
|||
)
|
||||
|
||||
|
||||
def get_timerange_from_ready_models(models_path: Path) -> tuple[TimeRange, str, dict[str, Any]]:
|
||||
def get_timerange_from_ready_models(models_path: Path) -> Tuple[TimeRange, str, dict[str, Any]]:
|
||||
"""
|
||||
Returns timerange information based on a FreqAI model directory
|
||||
:param models_path: FreqAI model path
|
||||
|
|
Loading…
Reference in New Issue
Block a user