jpic 984f09d704 Refactor output and call
Each action has its own output from now on.
2020-02-15 01:04:52 +01:00

7 lines
149 B
Python

from .base import Action
class Run(Action):
async def call(self, *args, **kwargs):
return (await self.exec(*self.args, **self.kwargs))