(self, jid: str)
| 62 | return |
| 63 | |
| 64 | def getJunction(self, jid: str) -> Junction: |
| 65 | try: |
| 66 | return self.junctions[jid] |
| 67 | except KeyError: |
| 68 | return |
| 69 | |
| 70 | def getJunctionLane(self, jlid: str) -> JunctionLane: |
| 71 | try: |
no outgoing calls
no test coverage detected