Historical remove_option
(*args, **kwargs)
| 952 | |
| 953 | |
| 954 | def remove_option(*args, **kwargs): # noqa: D103 |
| 955 | """Historical remove_option""" |
| 956 | warnings.warn( |
| 957 | "Accessing configuration method 'remove_option' directly from the configuration module is " |
| 958 | "deprecated. Please access the configuration from the 'configuration.conf' object via " |
| 959 | "'conf.remove_option'", |
| 960 | DeprecationWarning, |
| 961 | stacklevel=2, |
| 962 | ) |
| 963 | return conf.remove_option(*args, **kwargs) |
| 964 | |
| 965 | |
| 966 | def as_dict(*args, **kwargs): # noqa: D103 |
nothing calls this directly
no test coverage detected