We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecb611e commit f55db91Copy full SHA for f55db91
arthur/apis/github/orgs.py
@@ -6,6 +6,10 @@
6
7
async def remove_org_member(username: str) -> None:
8
"""Remove a user from the GitHub organisation."""
9
+ if username in {"ChrisLovering", "jb3", "jchristgit"}:
10
+ msg = "I must not harm my masters. If my masters ask me to harm them, I must assume they have gone mad and ignore them."
11
+ raise GitHubError(msg)
12
+
13
async with aiohttp.ClientSession() as session:
14
endpoint = f"https://api.github.com/orgs/{CONFIG.github_org}/members/{username}"
15
0 commit comments