1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-07-12 09:07:36 +00:00

Merge pull request #5 from justanotherbyte/patch-1

Remove duplicate __version__
This commit is contained in:
Var 2022-04-29 21:25:13 +05:30 committed by GitHub
commit f3a8c359c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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