aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arthur/apis/github/orgs.py1
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}"