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

No need for if type checking anymore

This commit is contained in:
NextChai 2022-04-30 02:46:52 -04:00
parent cbca8016f0
commit 0fe12211a9

View file

@ -3,12 +3,10 @@ from __future__ import annotations
__all__ = ("GHClient",)
import asyncio
import functools
import aiohttp
from typing import (
TYPE_CHECKING,
Awaitable,
Callable,
Literal,
@ -35,9 +33,6 @@ P = ParamSpec('P')
class GHClient:
if TYPE_CHECKING:
http: http
has_started: bool = False
def __init__(