Get the list of possible expressions Returns: list[str]: List of expressions
(self)
| 33 | pass |
| 34 | |
| 35 | def get_expressions(self) -> list[str]: |
| 36 | """Get the list of possible expressions |
| 37 | |
| 38 | Returns: |
| 39 | list[str]: List of expressions |
| 40 | """ |
| 41 | return [] |
| 42 | |
| 43 | def set_expression(self, expression: str) -> None: |
| 44 | """Set the expression |
nothing calls this directly
no outgoing calls
no test coverage detected