(self, *, data: bytes | str, path: Path)
| 22 | |
| 23 | class YAMLConfig(BaseConfig): |
| 24 | def __init__(self, *, data: bytes | str, path: Path) -> None: |
| 25 | super().__init__() |
| 26 | self.path = path |
| 27 | self._parse_setting(data) |
| 28 | |
| 29 | def init_empty_config_content(self) -> None: |
| 30 | with smart_open( |
nothing calls this directly
no test coverage detected