diff --git a/Github/http.py b/Github/http.py index 7e4b953..caab1ae 100644 --- a/Github/http.py +++ b/Github/http.py @@ -7,9 +7,10 @@ from datetime import datetime from types import SimpleNamespace import re -from .exceptions import * -from .objects import * -from .urls import * + +from exceptions import * +from objects import * +from urls import * LINK_PARSING_RE = re.compile(r"<(\S+(\S))>; rel=\"(\S+)\"") Rates = namedtuple('Rates', ('remaining', 'used', 'total', 'reset_when', 'last_request')) diff --git a/Github/main.py b/Github/main.py index 48227e8..bff93ca 100644 --- a/Github/main.py +++ b/Github/main.py @@ -7,9 +7,9 @@ __all__ = ( from getpass import getpass import aiohttp -from . import http -from .exceptions import AlreadyStarted, NotStarted -from .objects import User, Repository +import http +from exceptions import AlreadyStarted, NotStarted +from objects import User, Repository class Github: _auth = None