File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -465,7 +465,7 @@ def _download_all_pairs_history_parallel(
465465 timerange : TimeRange | None = None ,
466466) -> dict [PairWithTimeframe , DataFrame ]:
467467 """
468- Allows us to use the faster parallel async download method for many coins
468+ Allows to use the faster parallel async download method for many coins
469469 but only if the data is short enough to be retrieved in one call.
470470 Used by freqtrade download-data subcommand.
471471 :return: Candle pairs with timeframes
@@ -478,7 +478,7 @@ def _download_all_pairs_history_parallel(
478478
479479 candle_limit = exchange .ohlcv_candle_limit (timeframe , CandleType .get_default (trading_mode ))
480480 one_call_min_time_dt = dt_ts (date_minus_candles (timeframe , candle_limit ))
481- # check if we can get them all in one go, if so then we can download them in parallel
481+ # check if we can get all candles in one go, if so then we can download them in parallel
482482 if since > one_call_min_time_dt :
483483 logger .info (
484484 f"Downloading parallel candles for { timeframe } for all pairs "
You can’t perform that action at this time.
0 commit comments