def gh_fetch()

in converter.py [0:0]


    def gh_fetch(self, uri):
        self.logger.log.debug(f"Fetching {uri}...")
        try:
            data = self.gh.get(uri)
            self.logger.log.debug(data)
            data.raise_for_status()

        except:
            self.logger.log.error(f"{uri} Returned 404!")
            return None

        data = yaml.safe_load(data.content.decode("utf-8"))
        if isinstance(data, list):
            return data
        else:
            print(data["status"])