diff options
author | 2025-07-10 14:16:44 +0100 | |
---|---|---|
committer | 2025-07-10 14:17:07 +0100 | |
commit | a78ef1fdaed9a5720db98bb1dcc2ff53bbe73448 (patch) | |
tree | 50bf2ffb58f7963bc00bcf2c2c0cd1fbad1a41ab | |
parent | Add exemption for new cog to _is_devops (diff) |
Update exports for GitHub APIs
-rw-r--r-- | arthur/apis/github/__init__.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/arthur/apis/github/__init__.py b/arthur/apis/github/__init__.py index 77988a1..11261da 100644 --- a/arthur/apis/github/__init__.py +++ b/arthur/apis/github/__init__.py @@ -1,6 +1,3 @@ -from .teams import GithubTeamNotFoundError, list_team_members +from .teams import GitHubError, add_staff_member -__all__ = ( - "GithubTeamNotFoundError", - "list_team_members", -) +__all__ = ("GitHubError", "add_staff_member") |