def __init__()

in ees_sharepoint/configuration.py [0:0]


    def __init__(self, file_name):
        self.file_name = file_name

        try:
            with open(file_name) as stream:
                self.__configurations = yaml.safe_load(stream)
        except YAMLError as exception:
            raise ConfigurationParsingException(file_name, exception)
        self.__configurations = self.validate()

        for date_config in ["start_time", "end_time"]:
            value = self.__configurations[date_config]
            self.__configurations[date_config] = self.__parse_date_config_value(value)