(self)
| 57 | return self._output,self.attributes.copy() |
| 58 | |
| 59 | def build(self): |
| 60 | if self._is_built: |
| 61 | return |
| 62 | super().build() |
| 63 | try: |
| 64 | from masfactory.visualizer import get_bridge # noqa: WPS433 |
| 65 | except Exception: |
| 66 | get_bridge = None # type: ignore[assignment] |
| 67 | runtime = get_bridge() if get_bridge is not None else None |
| 68 | if runtime is not None: |
| 69 | runtime.attach_graph(self) |
| 70 | def _update_gate_state(self): |
| 71 | pass |
| 72 | def _message_aggregate_in(self) -> dict[str,object]: |
no test coverage detected