Skip to content

Commit e0aa660

Browse files
committed
chore: improve docstring wording
1 parent 59ab51c commit e0aa660

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

freqtrade/data/history/history_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 "

0 commit comments

Comments
 (0)