Main function to run the operator.
(self)
| 12 | |
| 13 | @abstractmethod |
| 14 | def run(self) -> None: |
| 15 | """ |
| 16 | Main function to run the operator. |
| 17 | """ |
| 18 | pass |
| 19 | |
| 20 | def get_operator(operator_name, args) -> OperatorABC: |
| 21 | from dataflow.utils import OPERATOR_REGISTRY |
nothing calls this directly
no outgoing calls
no test coverage detected