Skip to content

Commit d989bcc

Browse files
Add types to ConnectionPool.from_url (#3495)
Co-authored-by: Vladyslav Vildanov <[email protected]>
1 parent b7d4c48 commit d989bcc

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

redis/connection.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from itertools import chain
1010
from queue import Empty, Full, LifoQueue
1111
from time import time
12-
from typing import Any, Callable, Dict, List, Optional, Type, Union
12+
from typing import Any, Callable, Dict, List, Optional, Type, TypeVar, Union
1313
from urllib.parse import parse_qs, unquote, urlparse
1414

1515
from redis.cache import (
@@ -1263,6 +1263,9 @@ def parse_url(url):
12631263
return kwargs
12641264

12651265

1266+
_CP = TypeVar("_CP", bound="ConnectionPool")
1267+
1268+
12661269
class ConnectionPool:
12671270
"""
12681271
Create a connection pool. ``If max_connections`` is set, then this
@@ -1278,7 +1281,7 @@ class ConnectionPool:
12781281
"""
12791282

12801283
@classmethod
1281-
def from_url(cls, url, **kwargs):
1284+
def from_url(cls: Type[_CP], url: str, **kwargs) -> _CP:
12821285
"""
12831286
Return a connection pool configured from the given URL.
12841287

0 commit comments

Comments
 (0)