From d514d3aec1f1ce41551aae661e8ee3d5abd1bb3e Mon Sep 17 00:00:00 2001 From: Joe Schr <8218910+TheJoeSchr@users.noreply.github.com> Date: Mon, 23 Oct 2023 10:58:24 +0200 Subject: [PATCH] fix docstring back --- freqtrade/exchange/exchange.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/freqtrade/exchange/exchange.py b/freqtrade/exchange/exchange.py index d0e7537b9..3d11463fc 100644 --- a/freqtrade/exchange/exchange.py +++ b/freqtrade/exchange/exchange.py @@ -2094,7 +2094,6 @@ class Exchange: f"Time jump detected. Evicting trades cache for {pair}, {timeframe}, {candle_type}") del self._trades[(pair, timeframe, candle_type)] - #TODO: change to trades candle limit if (not since_ms or not_all_data): # Multiple calls for one pair - to get more history one_call = timeframe_to_msecs(timeframe) * self.ohlcv_candle_limit( @@ -2242,7 +2241,7 @@ class Exchange: drop_incomplete: Optional[bool] = None ) -> Dict[PairWithTimeframe, DataFrame]: """ - Refresh in-memory OHLCV asynchronously and set `_trades` with the result + Refresh in-memory OHLCV asynchronously and set `_klines` with the result Loops asynchronously over pair_list and downloads all pairs async (semi-parallel). Only used in the dataprovider.refresh() method. :param pair_list: List of 2 element tuples containing pair, interval to refresh