Delete workspace :param workspace: the desired workspace. :return: status
(self, workspace, *args, **kwargs)
| 442 | return self.cmd("workspace", "new", workspace, *args, **kwargs) |
| 443 | |
| 444 | def delete_workspace(self, workspace, *args, **kwargs) -> CommandOutput: |
| 445 | """Delete workspace |
| 446 | |
| 447 | :param workspace: the desired workspace. |
| 448 | :return: status |
| 449 | """ |
| 450 | return self.cmd("workspace", "delete", workspace, *args, **kwargs) |
| 451 | |
| 452 | def show_workspace(self, **kwargs) -> CommandOutput: |
| 453 | """Show workspace, this command does not need the [DIR] part |