Merge commit '19031b24b523c872c1ac367821dc60c950a09755' as 'modules/libjuju'
[osm/N2VC.git] / modules / libjuju / juju / action.py
1 from . import model
2
3
4 class 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)