Add a new Blueprint object to the group. The Abstract class `MutableSequence` leverages this append method to perform the `BlueprintGroup.append` operation. Args: value (Blueprint): New `Blueprint` object. Returns: None
(self, value: Blueprint)
| 871 | return len(self._blueprints) |
| 872 | |
| 873 | def append(self, value: Blueprint) -> None: |
| 874 | """Add a new Blueprint object to the group. |
| 875 | |
| 876 | The Abstract class `MutableSequence` leverages this append method to |
| 877 | perform the `BlueprintGroup.append` operation. |
| 878 | |
| 879 | Args: |
| 880 | value (Blueprint): New `Blueprint` object. |
| 881 | |
| 882 | Returns: |
| 883 | None |
| 884 | """ |
| 885 | self._blueprints.append(value) |
| 886 | |
| 887 | def exception(self, *exceptions: Exception, **kwargs) -> Callable: |
| 888 | """Decorate a function to handle exceptions for all blueprints in the group. |
no outgoing calls