mirror of
https://github.com/RGBCube/GitHubWrapper
synced 2025-05-18 06:55:09 +00:00
Might've fixed imports?
This commit is contained in:
parent
669f72e467
commit
6797dc8a4f
2 changed files with 7 additions and 6 deletions
|
@ -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'))
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue