Name parallel executor

This commit is contained in:
jpic
2021-04-24 13:12:18 +02:00
parent 7408cf95c0
commit 30798fc66c
+3
View File
@@ -9,3 +9,6 @@ class Parallel:
return await asyncio.gather(*[ return await asyncio.gather(*[
target(action) for action in self.actions target(action) for action in self.actions
]) ])
def __str__(self):
return 'Parallel executor'