(self, element: Operation)
| 61 | super().__init__() |
| 62 | |
| 63 | def add(self, element: Operation): |
| 64 | if not isinstance(element, Operation): |
| 65 | raise TypeError('Operation Set can only contains operation instance.') |
| 66 | super().add(element) |
| 67 | return self |
| 68 | |
| 69 | def __iter__(self) -> Iterator[Operation]: |
| 70 | return super().__iter__() |
no outgoing calls
no test coverage detected