diff --git a/sharpy/plans/acts/auto_worker.py b/sharpy/plans/acts/auto_worker.py index 3130ce89..b997ea73 100644 --- a/sharpy/plans/acts/auto_worker.py +++ b/sharpy/plans/acts/auto_worker.py @@ -23,7 +23,8 @@ async def start(self, knowledge: "Knowledge"): async def execute(self) -> bool: self.act.to_count = min(self.to_count, self._optimal_count()) - return await self.act.execute() + await self.act.execute() + return True def _optimal_count(self) -> int: count = 1