def __init__(self, logger):
"""
Initialize the class
:param logger: Logging
"""
super(YamlConfiguration, self).__init__()
yaml.add_constructor('!include', self.__yaml_include)
self.__logger = logger
文章目录