PATH:
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
setoptconf
/
source
from ..config import Configuration from .base import Source __all__ = ("MappingSource",) class MappingSource(Source): def __init__(self, target): super(MappingSource, self).__init__() self.target = target def get_config(self, settings, manager=None, parent=None): for setting in settings: if setting.name in self.target: setting.value = self.target[setting.name] return Configuration(settings=settings, parent=parent)
[+]
..
[+]
__pycache__
[-] configfile.py
[open]
[-] mapping.py
[open]
[-] commandline.py
[open]
[-] base.py
[open]
[-] environment.py
[open]
[-] filebased.py
[open]
[-] __init__.py
[open]
[-] yamlfile.py
[open]
[-] jsonfile.py
[open]
[-] modobj.py
[open]