Update typehint for candle_cache

This commit is contained in:
Matthias
2024-02-22 07:09:47 +01:00
committed by Joe Schr
parent 7db2367de9
commit 426e7c48e4

View File

@@ -139,7 +139,7 @@ class Exchange:
# Holds candles
self._klines: Dict[PairWithTimeframe, DataFrame] = {}
self._expiring_candle_cache: Dict[str, PeriodicCache] = {}
self._expiring_candle_cache: Dict[Tuple[str, int], PeriodicCache] = {}
# Holds public_trades
self._trades: Dict[PairWithTimeframe, DataFrame] = {}