(self)
| 396 | # backward compatibility reasons until v3.2.0 |
| 397 | @property |
| 398 | def liveactions(self): |
| 399 | warnings.warn( |
| 400 | ( |
| 401 | "st2client.liveactions has been renamed to st2client.executions, please " |
| 402 | "update your code" |
| 403 | ), |
| 404 | DeprecationWarning, |
| 405 | ) |
| 406 | return self.executions |
| 407 | |
| 408 | @property |
| 409 | def inquiries(self): |
nothing calls this directly
no outgoing calls
no test coverage detected