(self, *, data: bytes | str, path: Path)
| 21 | |
| 22 | class JsonConfig(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 | with self.path.open("rb") as json_file: |
nothing calls this directly
no test coverage detected