(self, config_file: Path = CONFIG_FILE)
| 58 | """ |
| 59 | |
| 60 | def __init__(self, config_file: Path = CONFIG_FILE): |
| 61 | self.config_file = config_file |
| 62 | self._config: Dict[str, Any] = self._load_config() |
| 63 | |
| 64 | def _load_config(self) -> Dict[str, Any]: |
| 65 | """Load configuration from file or return defaults.""" |
nothing calls this directly
no test coverage detected