(self, motion : str)
| 235 | return self._motions_raw |
| 236 | |
| 237 | def do_motion(self, motion : str): |
| 238 | requests.post(f'{self.base_url}/motion', json={'motion': motion}) |
| 239 | |
| 240 | def set_overlay(self, overlay : str): |
| 241 | requests.post(f'{self.base_url}/set_overlay', json={'expression': overlay}) |
nothing calls this directly
no outgoing calls
no test coverage detected