Skip to content

Commit aa4aea4

Browse files
authored
lint (#803)
1 parent 1aaec11 commit aa4aea4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

langserve/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
from concurrent.futures import ThreadPoolExecutor
99
from functools import lru_cache
1010
from typing import (
11+
TYPE_CHECKING,
1112
Any,
1213
AsyncIterator,
1314
Dict,
@@ -49,9 +50,8 @@
4950

5051
logger = logging.getLogger(__name__)
5152

52-
import typing
53-
54-
if typing.TYPE_CHECKING: # We simply follow the way httpx do
53+
if TYPE_CHECKING:
54+
# For type checking httpx types
5555
import ssl
5656

5757

0 commit comments

Comments
 (0)