(self, dimension, connectors = [])
| 26 | value to the other. |
| 27 | """ |
| 28 | def __init__(self, dimension, connectors = []): |
| 29 | self.dimension = dimension |
| 30 | for wire1, wire2 in connectors: |
| 31 | self.addConnector(wire1, wire2) |
| 32 | |
| 33 | def addConnector(self, wire1, wire2): |
| 34 | """Add a connector between wire1 and wire2 in the network.""" |
nothing calls this directly
no test coverage detected