py.lib.aw_config

Yohn Y. 2026-06-23 Parent:b0e747c8cb69

19:0fe90487ecdf Go to Latest

py.lib.aw_config/src/aw_config/__init__.py

.. 0.202606.4 . Исправление неточности с списке экспортов модуля

History
     1.1 --- a/src/aw_config/__init__.py	Tue Jun 23 12:37:22 2026 +0300
     1.2 +++ b/src/aw_config/__init__.py	Tue Jun 23 13:50:57 2026 +0300
     1.3 @@ -3,7 +3,7 @@
     1.4  from .type_helpers import ANY, DICT, LIST
     1.5  from .file import ConfigFile, ConfigSectionNotFound, ConfigFileError
     1.6  from .app_tools import get_app_root
     1.7 -from .app_config_manager import (get_config, init_configs, replace_config, add_config,
     1.8 +from .app_config_manager import (get_config, init_configs, replace_config, del_config, add_config,
     1.9                                   AppConfNotFound, AppConfManagerError)
    1.10  
    1.11  
    1.12 @@ -12,5 +12,6 @@
    1.13      'ANY', 'DICT', 'LIST',
    1.14      'ConfigFile', 'ConfigSectionNotFound', 'ConfigFileError', 'EnvConfigError',
    1.15      'get_app_root',
    1.16 -    'get_config', 'init_configs', 'replace_config', 'add_config', 'AppConfNotFound', 'AppConfManagerError'
    1.17 +    'get_config', 'init_configs', 'replace_config', 'del_config', 'add_config',
    1.18 +    'AppConfNotFound', 'AppConfManagerError'
    1.19  ]