Method
__init__
(self, *args: t.Any, **kwargs: t.Any)
Source from the content-addressed store, hash-verified
| 1146 | """ |
| 1147 | |
| 1148 | def __init__(self, *args: t.Any, **kwargs: t.Any) -> None: |
| 1149 | warnings.warn( |
| 1150 | "KeyValueConfigLoader is deprecated since Traitlets 5.0." |
| 1151 | " Use KVArgParseConfigLoader instead.", |
| 1152 | DeprecationWarning, |
| 1153 | stacklevel=2, |
| 1154 | ) |
| 1155 | super().__init__(*args, **kwargs) |
| 1156 | |
| 1157 | |
| 1158 | def load_pyconfig_files(config_files: list[str], path: str) -> Config: |
Callers
nothing calls this directly
Tested by
no test coverage detected