(self, *, data: bytes | str, path: Path)
| 21 | |
| 22 | class TomlConfig(BaseConfig): |
| 23 | def __init__(self, *, data: bytes | str, path: Path) -> None: |
| 24 | super().__init__() |
| 25 | self.path = path |
| 26 | self._parse_setting(data) |
| 27 | |
| 28 | def contains_commitizen_section(self) -> bool: |
| 29 | config_doc = parse(self.path.read_bytes()) |
nothing calls this directly
no test coverage detected