(p: Edge | Wire)
| 4590 | |
| 4591 | @staticmethod |
| 4592 | def _toWire(p: Edge | Wire) -> Wire: |
| 4593 | |
| 4594 | if isinstance(p, Edge): |
| 4595 | rv = Wire.assembleEdges([p,]) |
| 4596 | else: |
| 4597 | rv = p |
| 4598 | |
| 4599 | return rv |
| 4600 | |
| 4601 | @mypyclassmethod |
| 4602 | @multimethod |
no test coverage detected