diff --git a/tests/strategy/strats/hyperoptable_strategy.py b/tests/strategy/strats/hyperoptable_strategy.py index bc71ed3ae..3a2b210be 100644 --- a/tests/strategy/strats/hyperoptable_strategy.py +++ b/tests/strategy/strats/hyperoptable_strategy.py @@ -52,7 +52,7 @@ class HyperoptableStrategy(StrategyTestV3): bot_loop_started = False bot_started = False - def bot_loop_start(self): + def bot_loop_start(self, **kwargs): self.bot_loop_started = True def bot_start(self, **kwargs) -> None: diff --git a/tests/strategy/strats/hyperoptable_strategy_v2.py b/tests/strategy/strats/hyperoptable_strategy_v2.py index 650c587f5..40e139e1f 100644 --- a/tests/strategy/strats/hyperoptable_strategy_v2.py +++ b/tests/strategy/strats/hyperoptable_strategy_v2.py @@ -48,7 +48,7 @@ class HyperoptableStrategyV2(StrategyTestV2): bot_loop_started = False - def bot_loop_start(self): + def bot_loop_start(self, **kwargs): self.bot_loop_started = True def bot_start(self, **kwargs) -> None: