From 9131ba05dbc72c6a482b54219db8adad2adf9158 Mon Sep 17 00:00:00 2001 From: HENRY Florian Date: Sun, 28 Aug 2022 14:29:10 +0200 Subject: [PATCH] fix: use ref param instead of branch for get_required_deps (GitHub contents API) (#1362) * fix: use ref param instead of branch * fix: use ref param instead of branch * chore: unintentional changes from web editor Co-authored-by: Ankush Menat --- bench/utils/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bench/utils/app.py b/bench/utils/app.py index d313fae1..790792da 100644 --- a/bench/utils/app.py +++ b/bench/utils/app.py @@ -181,11 +181,11 @@ def get_required_deps(org, name, branch, deps="hooks.py"): import base64 git_api_url = f"https://api.github.com/repos/{org}/{name}/contents/{name}/{deps}" - params = {"branch": branch or "develop"} + params = {"ref": branch or "develop"} res = requests.get(url=git_api_url, params=params).json() if "message" in res: - git_url = f"https://raw.githubusercontent.com/{org}/{name}/{params['branch']}/{name}/{deps}" + git_url = f"https://raw.githubusercontent.com/{org}/{name}/{params['ref']}/{name}/{deps}" return requests.get(git_url).text return base64.decodebytes(res["content"].encode()).decode()