(self, encoded: str, **kwargs)
| 110 | """ |
| 111 | |
| 112 | def __init__(self, encoded: str, **kwargs): |
| 113 | self._name = "PolygonFromEncoded" |
| 114 | super().__init__(encoded) |
| 115 | self.options = path_options(line=True, radius=None, **kwargs) |
| 116 | |
| 117 | @property |
| 118 | def _encoding_type(self) -> str: |
nothing calls this directly
no test coverage detected