1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-17 06:25:10 +00:00

Small fixes

This commit is contained in:
VarMonke 2022-05-16 13:54:15 +05:30
parent db9f385801
commit dddc0d410a
3 changed files with 36 additions and 16 deletions

View file

@ -7,22 +7,26 @@ from aiohttp import ClientResponse
__all__: Tuple[str, ...] = (
'APIError',
'HTTPException',
'AlreadyStarted',
'ClientException',
'ResourceNotFound',
'Ratelimited',
'WillExceedRatelimit',
'NoAuthProvided',
'ClientResponse',
'GistNotFound',
'HTTPException',
'InvalidAuthCombination',
'InvalidToken',
'LoginFailure',
'NotStarted',
'AlreadyStarted',
'UserNotFound',
'RepositoryNotFound',
'IssueNotFound',
'LoginFailure',
'MissingPermissions',
'NoAuthProvided',
'NotStarted',
'OrganizationNotFound',
'Ratelimited',
'RepositoryAlreadyExists',
'RepositoryNotFound',
'ResourceAlreadyExists',
'ResourceNotFound',
'UserNotFound',
'WillExceedRatelimit',
)