Skip to content

Commit

Permalink
remove excessive spaeces
Browse files Browse the repository at this point in the history
  • Loading branch information
goFrendiAsgard committed Jan 9, 2024
1 parent b226903 commit fb9d73b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zrb/task/base_task/base_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ async def _run_all(self, *args: Any, **kwargs: Any) -> Any:
results = await asyncio.gather(*coroutines)
if self._return_upstream_result:
return results[0:-1]
return results[-1]
return results[-1]

async def _cached_run(self, *args: Any, **kwargs: Any) -> Any:
if self.__is_execution_triggered:
Expand Down

0 comments on commit fb9d73b

Please sign in to comment.