(self)
| 67 | self._init_ports() |
| 68 | |
| 69 | def _init_ports(self) -> None: |
| 70 | self.ports = [Port(self.name, port_config) for port_config in self.config.ports] |
| 71 | self.main_session.update_ports(self.ports) |
| 72 | for port in self.ports: |
| 73 | self.configure_port_state(port) |
| 74 | |
| 75 | def set_up_execution(self, execution_config: ExecutionConfiguration) -> None: |
| 76 | """ |
no test coverage detected