We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab9ccdc commit 0cbba3eCopy full SHA for 0cbba3e
auth.py
@@ -94,8 +94,10 @@ def auth_to_github(
94
elif token:
95
github_connection = github3.login(token=token)
96
else:
97
- raise ValueError("GH_TOKEN or the set of [GH_APP_ID, GH_APP_INSTALLATION_ID, \
98
- GH_APP_PRIVATE_KEY] environment variables are not set")
+ raise ValueError(
+ "GH_TOKEN or the set of [GH_APP_ID, GH_APP_INSTALLATION_ID, "
99
+ "GH_APP_PRIVATE_KEY] environment variables are not set"
100
+ )
101
102
if not github_connection:
103
raise ValueError("Unable to authenticate to GitHub")
0 commit comments