blob: 5ac4676d5fc670f9c46f118c3e9d080be94e2c89 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | from arthur.config import CONFIG
class GitHubError(Exception):
    """Custom exception for GitHub API errors."""
    def __init__(self, message: str):
        super().__init__(message)
HEADERS = {
    "Accept": "application/vnd.github+json",
    "X-GitHub-Api-Version": "2022-11-28",
    "Authorization": f"Bearer {CONFIG.github_token.get_secret_value()}",
}
HTTP_404 = 404
HTTP_403 = 403
HTTP_422 = 422
 |