diff --git a/shlax/strategies/asyn.py b/shlax/strategies/asyn.py index e7944f2..06213e0 100644 --- a/shlax/strategies/asyn.py +++ b/shlax/strategies/asyn.py @@ -5,7 +5,7 @@ from .script import Script class Async(Script): async def call(self, *args, **kwargs): - return asyncio.gather(*[ + return await asyncio.gather(*[ action(*args, **kwargs) for action in self.actions ])