Upon reaching the timeout value the status changes to SUCCESS
(self)
| 146 | self.timeout = False |
| 147 | |
| 148 | def update(self): |
| 149 | """ |
| 150 | Upon reaching the timeout value the status changes to SUCCESS |
| 151 | """ |
| 152 | |
| 153 | new_status = super(TimeOut, self).update() |
| 154 | |
| 155 | if new_status == py_trees.common.Status.SUCCESS: |
| 156 | self.timeout = True |
| 157 | |
| 158 | return new_status |
no outgoing calls
no test coverage detected