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

Update readthedocs version (might break stuff)

This commit is contained in:
RGBCube 2022-06-21 19:03:25 +03:00 committed by Automated Linter
parent 0d10386c39
commit 17b813532d
14 changed files with 67 additions and 70 deletions

View file

@ -2,29 +2,29 @@
from __future__ import annotations
import functools
import aiohttp
from typing import (
Any,
Awaitable,
Callable,
Literal,
Any,
Coroutine,
Dict,
Generator,
List,
Literal,
Optional,
Tuple,
Union,
List,
overload,
TypeVar,
Union,
overload,
)
from typing_extensions import Self, ParamSpec, Concatenate
import aiohttp
from typing_extensions import Concatenate, ParamSpec, Self
from . import exceptions
from .cache import ObjectCache
from .http import http
from .objects import Gist, Issue, Organization, Repository, User, File
from .objects import File, Gist, Issue, Organization, Repository, User
__all__: Tuple[str, ...] = ('GHClient', 'Client')