Method: pylint.config.arguments_manager._ArgumentsManager.load_configuration
Calls: 1, Exceptions: 0, Paths: 1Back
Path 1: 1 calls (1.0)
{'test_opt': True} (1)
1def load_configuration(self, **kwargs: Any) -> None: # pragma: no cover
2 """DEPRECATED: Override configuration according to given parameters."""
3 warnings.warn(
4 "load_configuration has been deprecated. It will be removed in pylint 3.0.",
5 DeprecationWarning,
6 stacklevel=2,
7 )
8 with warnings.catch_warnings():
9 warnings.filterwarnings("ignore", category=DeprecationWarning)
10 return self.load_configuration_from_config(kwargs)