Get the command template for the task. Args: cfg_path (str): The path to the config file of the task. template (str): The template which have '{task_cmd}' to format the command.
(self, cfg_path, template)
| 70 | |
| 71 | @abstractmethod |
| 72 | def get_command(self, cfg_path, template) -> str: |
| 73 | """Get the command template for the task. |
| 74 | |
| 75 | Args: |
| 76 | cfg_path (str): The path to the config file of the task. |
| 77 | template (str): The template which have '{task_cmd}' to format |
| 78 | the command. |
| 79 | """ |
| 80 | |
| 81 | @property |
| 82 | def name(self) -> str: |
no outgoing calls
no test coverage detected