Fix test type errors

This commit is contained in:
Matthias
2024-05-19 17:48:36 +02:00
parent acae6e75f4
commit a9f13d29fd
2 changed files with 2 additions and 2 deletions

View File

@@ -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:

View File

@@ -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: