Skip to content

Commit

Permalink
Merge branch 'main' into eyurtsev-patch-5
Browse files Browse the repository at this point in the history
  • Loading branch information
eyurtsev authored Dec 19, 2024
2 parents 9eb3e97 + aa4aea4 commit f361436
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions langserve/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from concurrent.futures import ThreadPoolExecutor
from functools import lru_cache
from typing import (
TYPE_CHECKING,
Any,
AsyncIterator,
Dict,
Expand Down Expand Up @@ -49,9 +50,8 @@

logger = logging.getLogger(__name__)

import typing

if typing.TYPE_CHECKING: # We simply follow the way httpx do
if TYPE_CHECKING:
# For type checking httpx types
import ssl


Expand Down

0 comments on commit f361436

Please sign in to comment.