Skip to content

Commit 0019867

Browse files
committed
didn't make a space in the end ... you can book that under typo ...
added a . at the end of another warning since all other messages do have the same structure.
1 parent 335e632 commit 0019867

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

freqtrade/exchange/exchange.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@ def validate_required_startup_candles(self, startup_candles: int, timeframe: str
880880
raise ConfigurationError(
881881
f"This strategy requires {startup_candles} candles to start, "
882882
"which is more than 5x "
883-
f"the amount of candles {self.name} provides for {timeframe}"
883+
f"the amount of candles {self.name} provides for {timeframe} "
884884
f"at a startup_candle_count limit of {candle_limit * 5 - 1}."
885885
)
886886
elif required_candle_call_count > 1:
@@ -892,7 +892,7 @@ def validate_required_startup_candles(self, startup_candles: int, timeframe: str
892892
logger.warning(
893893
f"Using {required_candle_call_count} calls to get OHLCV. "
894894
f"This can result in slower operations for the bot. Please check "
895-
f"if you really need {startup_candles} candles for your strategy"
895+
f"if you really need {startup_candles} candles for your strategy."
896896
)
897897
return required_candle_call_count
898898

0 commit comments

Comments
 (0)