Skip to content

Commit 4234b6a

Browse files
fix: add suggestions
1 parent 3b6a323 commit 4234b6a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: .coveragerc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[run]
22
omit =
33
# omit test files
4-
test_*.py
4+
test_*.py

Diff for: .env-example

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
GH_ENTERPRISE_URL=""
1+
GH_ENTERPRISE_URL = ""
22
GH_TOKEN = ""
33
END_DATE = ""
44
ORGANIZATION = "organization"
@@ -9,4 +9,4 @@ START_DATE = ""
99
GH_APP_ID = ""
1010
GH_INSTALLATION_ID = ""
1111
GH_PRIVATE_KEY = ""
12-
GITHUB_APP_ENTERPRISE_ONLY = ""
12+
GITHUB_APP_ENTERPRISE_ONLY = ""

Diff for: auth.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ def get_github_app_installation_token(
7676
response = requests.post(url, headers=jwt_headers, json=None, timeout=5)
7777
response.raise_for_status()
7878
except requests.exceptions.RequestException as e:
79-
print(f"Request failed: {e}")
79+
print(f"Request to get GitHub App Installation Token failed: {e}")
8080
return None
8181
return response.json().get("token")

0 commit comments

Comments
 (0)