Skip to content

Commit bb92334

Browse files
committed
Setting generics aside for now
1 parent 1b308e0 commit bb92334

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

arangoasync/http.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,13 @@
55
]
66

77
from abc import ABC, abstractmethod
8-
from typing import Any, Generic, Optional, TypeVar
8+
from typing import Any, Optional
99

1010
from aiohttp import BaseConnector, BasicAuth, ClientSession, ClientTimeout, TCPConnector
1111

1212
from arangoasync.request import Request
1313
from arangoasync.response import Response
1414

15-
T = TypeVar("T")
16-
1715

1816
class HTTPClient(ABC): # pragma: no cover
1917
"""Abstract base class for HTTP clients.
@@ -53,7 +51,7 @@ async def send_request(
5351
raise NotImplementedError
5452

5553

56-
class AioHTTPClient(HTTPClient, Generic[T]):
54+
class AioHTTPClient(HTTPClient):
5755
"""HTTP client implemented on top of [aiohttp](https://docs.aiohttp.org/en/stable/).
5856
5957
:param connector: Supports connection pooling.

0 commit comments

Comments
 (0)