diff --git a/.coveragerc b/.coveragerc index 366a2ce..029c5d6 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,4 +1,4 @@ [run] omit = # omit test files - test_*.py \ No newline at end of file + test_*.py diff --git a/.env-example b/.env-example index 45fd8e0..9c25853 100644 --- a/.env-example +++ b/.env-example @@ -1,4 +1,4 @@ -GH_ENTERPRISE_URL="" +GH_ENTERPRISE_URL = "" GH_TOKEN = "" END_DATE = "" ORGANIZATION = "organization" @@ -9,4 +9,4 @@ START_DATE = "" GH_APP_ID = "" GH_INSTALLATION_ID = "" GH_PRIVATE_KEY = "" -GITHUB_APP_ENTERPRISE_ONLY = "" \ No newline at end of file +GITHUB_APP_ENTERPRISE_ONLY = "" diff --git a/auth.py b/auth.py index 840d4eb..6669f54 100644 --- a/auth.py +++ b/auth.py @@ -76,6 +76,6 @@ def get_github_app_installation_token( response = requests.post(url, headers=jwt_headers, json=None, timeout=5) response.raise_for_status() except requests.exceptions.RequestException as e: - print(f"Request failed: {e}") + print(f"Request to get GitHub App Installation Token failed: {e}") return None return response.json().get("token")