diff options
author | 2025-07-16 10:34:13 +0100 | |
---|---|---|
committer | 2025-07-16 10:34:13 +0100 | |
commit | c61d4449cd94e320ff25e07f703416394c46a6d5 (patch) | |
tree | 473c217bb9aa1d559bc8523b5e01ead7a22affd7 | |
parent | Correct string conversion and coroutine run (diff) |
Remove org member does not return content
-rw-r--r-- | arthur/apis/github/orgs.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arthur/apis/github/orgs.py b/arthur/apis/github/orgs.py index 60255ac..03fe1f8 100644 --- a/arthur/apis/github/orgs.py +++ b/arthur/apis/github/orgs.py @@ -12,7 +12,6 @@ async def remove_org_member(username: str) -> None: async with session.delete(endpoint, headers=HEADERS) as resp: try: resp.raise_for_status() - return await resp.json() except aiohttp.ClientResponseError as e: if e.status == HTTP_404: msg = f"Team or user not found in the org: {e.message}" |