MCPcopy
hub / github.com/apache/airflow / remove_option

Function remove_option

airflow/configuration.py:954–963  ·  view source on GitHub ↗

Historical remove_option

(*args, **kwargs)

Source from the content-addressed store, hash-verified

952
953
954def 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
966def as_dict(*args, **kwargs): # noqa: D103

Callers

nothing calls this directly

Calls 2

warnMethod · 0.80
remove_optionMethod · 0.80

Tested by

no test coverage detected