Skip to content

ConfigSource

The protocol required to be used as a source of values in a FlexConfig

This is very much intended to support builtin `dict` as a source.

items(self)

A function to getting key, value pairs to store in the FlexConfig

Source code in flex_config\config_source.py
10
11
def items(self) -> Iterable[Tuple[str, Any]]:
    """ A function to getting key, value pairs to store in the FlexConfig """