def __init__()

in libs/gdk_config.py [0:0]


    def __init__(self):
        """ Gets the GDK configuration file as a dictionary """
        with open(self.GDK_CONFIG_JSON, encoding="utf-8") as gdk_config_file:
            self.json = json.load(gdk_config_file)
            self.component_name = list(self.json['component'])[0]