MCPcopy Create free account
hub / github.com/ipython/traitlets / __init__

Method __init__

traitlets/config/loader.py:1148–1155  ·  view source on GitHub ↗
(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
1158def load_pyconfig_files(config_files: list[str], path: str) -> Config:

Callers

nothing calls this directly

Calls 2

warnMethod · 0.80
__init__Method · 0.45

Tested by

no test coverage detected