diff options
author | 2025-07-10 14:28:36 +0100 | |
---|---|---|
committer | 2025-07-10 14:28:36 +0100 | |
commit | 23c21269f7edcf7b197449afd9c12ef69a224bed (patch) | |
tree | 2dc186571c1693823243955263033ce84ca89e6f /arthur | |
parent | Update exports for GitHub APIs (diff) |
Typo on GitHubException import
Diffstat (limited to 'arthur')
-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 11261da..468bbe6 100644 --- a/arthur/apis/github/__init__.py +++ b/arthur/apis/github/__init__.py @@ -1,3 +1,3 @@ -from .teams import GitHubError, add_staff_member +from .teams import GitHubException, add_staff_member -__all__ = ("GitHubError", "add_staff_member") +__all__ = ("GitHubException", "add_staff_member") |