(self, encoded: str, **kwargs)
| 76 | """ |
| 77 | |
| 78 | def __init__(self, encoded: str, **kwargs): |
| 79 | self._name = "PolyLineFromEncoded" |
| 80 | super().__init__(encoded=encoded) |
| 81 | self.options = path_options(line=True, **kwargs) |
| 82 | |
| 83 | @property |
| 84 | def _encoding_type(self) -> str: |
nothing calls this directly
no test coverage detected