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

Function get

airflow/configuration.py:882–891  ·  view source on GitHub ↗

Historical get

(*args, **kwargs)

Source from the content-addressed store, hash-verified

880
881
882def get(*args, **kwargs): # noqa: D103
883 """Historical get"""
884 warnings.warn(
885 "Accessing configuration method 'get' directly from the configuration module is "
886 "deprecated. Please access the configuration from the 'configuration.conf' object via "
887 "'conf.get'",
888 DeprecationWarning,
889 stacklevel=2,
890 )
891 return conf.get(*args, **kwargs)
892
893
894def getboolean(*args, **kwargs): # noqa: D103

Callers

nothing calls this directly

Calls 2

warnMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected