From 0e08f194e14b8f72e55caefb81c9733349a13a0c Mon Sep 17 00:00:00 2001 From: kaldan007 Date: Mon, 22 Aug 2022 14:16:58 +0530 Subject: [PATCH] fix(github-utils): git hub repo visibility update function renamed --- openpecha/github_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpecha/github_utils.py b/openpecha/github_utils.py index 2b8a8e95..792053ce 100644 --- a/openpecha/github_utils.py +++ b/openpecha/github_utils.py @@ -38,7 +38,7 @@ def create_github_repo(path, org_name, token, private=False): return repo._html_url.value -def update_github_repo(repo_name, org_name, token, private=False): +def update_github_repo_visibility(repo_name, org_name, token, private=False): org = _get_openpecha_data_org(org_name, token) repo = org.get_repo(repo_name) repo.edit(private=private)