``clear`` Remove all Activity nodes from this Workflow. :return: True on success, False otherwise :rtype: bool
(self)
| 481 | return core.BNWorkflowAssignSubactivities(self.handle, str(activity), input_list, len(activities)) |
| 482 | |
| 483 | def clear(self) -> bool: |
| 484 | """ |
| 485 | ``clear`` Remove all Activity nodes from this Workflow. |
| 486 | |
| 487 | :return: True on success, False otherwise |
| 488 | :rtype: bool |
| 489 | """ |
| 490 | return core.BNWorkflowClear(self.handle) |
| 491 | |
| 492 | def insert(self, activity: ActivityType, activities: Union[List[str], str]) -> bool: |
| 493 | """ |
no outgoing calls
no test coverage detected