From 0fe12211a946ffff914216496de99416a78f8517 Mon Sep 17 00:00:00 2001 From: NextChai <75498301+NextChai@users.noreply.github.com> Date: Sat, 30 Apr 2022 02:46:52 -0400 Subject: [PATCH] No need for if type checking anymore --- Github/main.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Github/main.py b/Github/main.py index ca69132..8dff559 100644 --- a/Github/main.py +++ b/Github/main.py @@ -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__(