PATH: //opt/cloudlinux/venv/lib/python3.11/site-packages/setoptconf/source
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📁 __pycache__/
X
📄 base.py
↓
X
📄 commandline.py
↓
X
📄 configfile.py
↓
X
📄 environment.py
↓
X
📄 filebased.py
↓
X
📄 jsonfile.py
↓
X
📄 mapping.py
↓
X
📄 modobj.py
↓
X
📄 yamlfile.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: mapping.py
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)
SIMPAN PERUBAHAN