(self, expression : str)
| 104 | print("EMOTIONS: " + str(self._expressions_raw)) |
| 105 | return self._expressions_raw |
| 106 | |
| 107 | def set_expression(self, expression : str): |
| 108 | if not self.loaded: |
| 109 | return |
| 110 | script = "set_expression('{}')".format(expression) |
| 111 | self.webview.evaluate_javascript(script, len(script)) |
| 112 | |
| 113 | def get_motions_groups(self): |
nothing calls this directly
no outgoing calls
no test coverage detected