(self, dimension, connectors = [])
| 36 | value to the other. |
| 37 | """ |
| 38 | def __init__(self, dimension, connectors = []): |
| 39 | self.dimension = dimension |
| 40 | for wire1, wire2 in connectors: |
| 41 | self.addConnector(wire1, wire2) |
| 42 | |
| 43 | def addConnector(self, wire1, wire2): |
| 44 | """Add a connector between wire1 and wire2 in the network.""" |
nothing calls this directly
no test coverage detected