1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-18 15:05:08 +00:00

Might've fixed imports?

This commit is contained in:
sudosnok 2022-03-27 14:55:52 +01:00
parent 669f72e467
commit 6797dc8a4f
2 changed files with 7 additions and 6 deletions

View file

@ -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'))

View file

@ -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