(self)
| 561 | return self._workspace_type |
| 562 | |
| 563 | def _assert_not_used(self): |
| 564 | assert not self._already_used, ( |
| 565 | 'Cannot modify task since it is already been used.') |
| 566 | |
| 567 | def add_output(self, output): |
| 568 | self._assert_not_used() |
no outgoing calls
no test coverage detected