(self, expression : str)
| 221 | return self._expressions_raw |
| 222 | |
| 223 | def set_expression(self, expression : str): |
| 224 | requests.post(f'{self.base_url}/expression', json={'expression': expression}) |
| 225 | |
| 226 | def get_motions(self): |
| 227 | if len(self._motions_raw) > 0: |
nothing calls this directly
no outgoing calls
no test coverage detected