diff --git a/freqtrade/optimize/hyperopt.py b/freqtrade/optimize/hyperopt.py index 0ed3d4cbf..a69e5a5a2 100644 --- a/freqtrade/optimize/hyperopt.py +++ b/freqtrade/optimize/hyperopt.py @@ -103,7 +103,8 @@ class Hyperopt: self.current_best_epoch: Optional[Dict[str, Any]] = None if not self.auto_hyperopt: - # Populate "fallback" functions here (hasattr is slow so should not be run during "regular" operations) + # Populate "fallback" functions here + # (hasattr is slow so should not be run during "regular" operations) if hasattr(self.custom_hyperopt, 'populate_indicators'): self.backtesting.strategy.advise_indicators = ( # type: ignore self.custom_hyperopt.populate_indicators) # type: ignore