(self, transforms # type: List[BidirectionalTransform]
)
| 315 | class BidirectionalMapping: |
| 316 | |
| 317 | def __init__(self, transforms # type: List[BidirectionalTransform] |
| 318 | ): |
| 319 | self._transforms = transforms |
| 320 | self._mapping = {} |
| 321 | for t in self._transforms: |
| 322 | self._mapping.update(t.transform_as_dict()) |
| 323 | |
| 324 | @staticmethod |
| 325 | def convert_to_dest(mapping, # type: Dict[str, Any] |
nothing calls this directly
no test coverage detected