Update typehint for candle_cache

This commit is contained in:
Matthias 2024-02-22 07:09:47 +01:00
parent 4cfd5d004e
commit db83b0cdb0

View File

@ -132,7 +132,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 all open sell orders for dry_run
self._dry_run_open_orders: Dict[str, Any] = {}