From c61d4449cd94e320ff25e07f703416394c46a6d5 Mon Sep 17 00:00:00 2001 From: Joe Banks Date: Wed, 16 Jul 2025 10:34:13 +0100 Subject: Remove org member does not return content --- arthur/apis/github/orgs.py | 1 - 1 file changed, 1 deletion(-) 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}" -- cgit v1.2.3