def check(self, client: aiohttp.ClientSession,
usernames: AbstractSet[str]) -> Status:
"""Check if all of the specified usernames have signed the CLA."""
# While it would technically share more specific information if a
# mapping of {username: Status} was returned, the vast majority of
# cases will be for a single user and thus not worth the added
# complexity to need to worry about it.
return Status.username_not_found # pragma: no cover
评论列表
文章目录