Historical get
(*args, **kwargs)
| 880 | |
| 881 | |
| 882 | def 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 | |
| 894 | def getboolean(*args, **kwargs): # noqa: D103 |