def __init__()

in wadebug/config.py [0:0]


    def __init__(self):
        try:
            self._development_mode = (
                os.environ.get("WADEBUG_DEV_MODE", "False") == "True"
            )
            self._config = self._load_config_from_file()
        except yaml.parser.ParserError as e:
            self._config_load_error = ConfigLoadError.CONFIG_INVALID
            self._config_load_exception = e
        except Exception:
            self._config_load_error = ConfigLoadError.CONFIG_MISSING