From 270f43911f8690fb0bdd788d721d8c348f15e676 Mon Sep 17 00:00:00 2001 From: "Matthew R. Becker" Date: Wed, 18 Sep 2024 15:46:15 -0500 Subject: [PATCH] Update conda_smithy/lint_recipe.py --- conda_smithy/lint_recipe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda_smithy/lint_recipe.py b/conda_smithy/lint_recipe.py index 7a6f9b9d7..3e68efc8a 100644 --- a/conda_smithy/lint_recipe.py +++ b/conda_smithy/lint_recipe.py @@ -381,7 +381,7 @@ def _cached_gh_with_token(token: str) -> github.Github: return github.Github(auth=github.Auth.Token(token)) -def _cached_gh(): -> github.Github: +def _cached_gh() -> github.Github: return _cached_gh_with_token(os.environ["GH_TOKEN"])