We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ec464f commit a6daac0Copy full SHA for a6daac0
auth.py
@@ -35,7 +35,9 @@ def auth_to_github(
35
elif token:
36
github_connection = github3.login(token=token)
37
else:
38
- raise ValueError("GH_TOKEN or the set of [GH_APP_ID, GH_APP_INSTALLATION_ID, GH_APP_PRIVATE_KEY] environment variables are not set")
+ raise ValueError(
39
+ "GH_TOKEN or the set of [GH_APP_ID, GH_APP_INSTALLATION_ID, GH_APP_PRIVATE_KEY] environment variables are not set"
40
+ )
41
42
if not github_connection:
43
raise ValueError("Unable to authenticate to GitHub")
0 commit comments