From 04c7483850ecd2396bd0de15cffc8d85e03362d2 Mon Sep 17 00:00:00 2001 From: Vish M Date: Fri, 29 Apr 2022 16:50:43 +0100 Subject: [PATCH] Update http.py 2 `__version__`? fixed that? --- Github/http.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Github/http.py b/Github/http.py index f2c25a7..5aa5fda 100644 --- a/Github/http.py +++ b/Github/http.py @@ -17,8 +17,7 @@ from .exceptions import * from .exceptions import GistNotFound, RepositoryAlreadyExists, MissingPermissions from .objects import APIObject, User, Gist, Repository, Organization, File from .urls import * - -__version__ = '0.0.1' +from . import __version__ __all__ = ( 'Paginator', @@ -287,4 +286,4 @@ class http: return await result.json() if result.status == 401: raise NoAuthProvided - raise RepositoryAlreadyExists \ No newline at end of file + raise RepositoryAlreadyExists