diff options
| author | 2025-07-10 14:52:57 +0100 | |
|---|---|---|
| committer | 2025-07-10 14:52:57 +0100 | |
| commit | 85e5951799869074b43714ef02aa0c972c9b15cb (patch) | |
| tree | 4204c96a2da4bf2da9cfcf8a30d57e8e1b0aae72 /arthur/apis/github/__init__.py | |
| parent | Rename Exceptions (diff) | |
Fix mistakes from my inferior brain (#327)
* Rename GitHubException in cog
* Update GitHubException in Teams API
* Update __init__.py in GitHub API with new exception naming
Diffstat (limited to 'arthur/apis/github/__init__.py')
| -rw-r--r-- | arthur/apis/github/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arthur/apis/github/__init__.py b/arthur/apis/github/__init__.py index 468bbe6..11261da 100644 --- a/arthur/apis/github/__init__.py +++ b/arthur/apis/github/__init__.py @@ -1,3 +1,3 @@ -from .teams import GitHubException, add_staff_member +from .teams import GitHubError, add_staff_member -__all__ = ("GitHubException", "add_staff_member") +__all__ = ("GitHubError", "add_staff_member") |