def load_gh_auth():
    with open(CREDENTIALS_FILE, 'r') as fd:
        data = fd.read()
        return Authorization.from_json(data)
    return None