1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-07-25 23:47:44 +00:00
This commit is contained in:
VarMonke 2022-04-30 00:06:42 +05:30
commit babfb7bdcd
2 changed files with 3 additions and 4 deletions

View file

@ -8,4 +8,4 @@ from .exceptions import *
__title__ = 'Github-Api-Wrapper' __title__ = 'Github-Api-Wrapper'
__authors__ = 'VarMonke', 'sudosnok' __authors__ = 'VarMonke', 'sudosnok'
__version__ = '1.0.0' __version__ = '1.0.1'

View file

@ -17,8 +17,7 @@ from .exceptions import *
from .exceptions import GistNotFound, RepositoryAlreadyExists, MissingPermissions from .exceptions import GistNotFound, RepositoryAlreadyExists, MissingPermissions
from .objects import APIObject, User, Gist, Repository, Organization, File from .objects import APIObject, User, Gist, Repository, Organization, File
from .urls import * from .urls import *
from . import __version__
__version__ = '0.0.1'
__all__ = ( __all__ = (
'Paginator', 'Paginator',
@ -287,4 +286,4 @@ class http:
return await result.json() return await result.json()
if result.status == 401: if result.status == 401:
raise NoAuthProvided raise NoAuthProvided
raise RepositoryAlreadyExists raise RepositoryAlreadyExists