blob: 7a136a73f660dd3637b2af992514db99a0ce1f31 [file] [log] [blame]
Adam Israeldcdf82b2017-08-15 15:26:43 -04001from . import model
2
3
4class Action(model.ModelEntity):
5 @property
6 def status(self):
7 return self.data['status']
8
9 async def wait(self):
10 return await self.model.wait_for_action(self.id)