``remove`` Remove the specified ``activity``. :param str activity: the Activity to remove :return: True on success, False otherwise :rtype: bool
(self, activity: ActivityType)
| 522 | return core.BNWorkflowInsertAfter(self.handle, str(activity), input_list, len(activities)) |
| 523 | |
| 524 | def remove(self, activity: ActivityType) -> bool: |
| 525 | """ |
| 526 | ``remove`` Remove the specified ``activity``. |
| 527 | |
| 528 | :param str activity: the Activity to remove |
| 529 | :return: True on success, False otherwise |
| 530 | :rtype: bool |
| 531 | """ |
| 532 | return core.BNWorkflowRemove(self.handle, str(activity)) |
| 533 | |
| 534 | def replace(self, activity: ActivityType, new_activity: str) -> bool: |
| 535 | """ |
no outgoing calls
no test coverage detected