(self, version: str)
| 177 | return 0, 1, 0 |
| 178 | |
| 179 | def _bump_patch(self, version: str) -> str: |
| 180 | major, minor, patch = self._parse_patch(version) |
| 181 | return f"{major}.{minor}.{patch + 1}" |
| 182 | |
| 183 | def _load_models(self, path: Path, model_cls: type[BaseModel]) -> list[BaseModel]: |
| 184 | if not self.enabled or not path.is_file(): |
no test coverage detected