(self, default_path: str = None)
| 653 | |
| 654 | class ConfigLoader: |
| 655 | def __init__(self, default_path: str = None): |
| 656 | if default_path is None: |
| 657 | default_path = Path(__file__).parent / "config.yaml" |
| 658 | self._default_dict = self._load_yaml(default_path) |
| 659 | |
| 660 | @staticmethod |
| 661 | def _load_yaml(path): |
nothing calls this directly
no test coverage detected