Fix mypy type errors in tests

This commit is contained in:
Matthias
2020-02-10 10:35:48 +01:00
parent 0ba8d13de9
commit 83644ce5d8
5 changed files with 20 additions and 18 deletions

View File

@@ -23,7 +23,7 @@ class BTContainer(NamedTuple):
"""
Minimal BacktestContainer defining Backtest inputs and results.
"""
data: List[float]
data: List[List[float]]
stop_loss: float
roi: Dict[str, float]
trades: List[BTrade]