mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-21 00:21:49 +00:00
fix(repositories): import LiteralString from typing_extensions for python 3.10
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
parent
6dce85c728
commit
7c068a4cf7
1 changed files with 3 additions and 1 deletions
|
|
@ -7,7 +7,9 @@ private ones per file.
|
|||
"""
|
||||
|
||||
from collections.abc import Mapping, Sequence
|
||||
from typing import LiteralString, Protocol, TypeVar
|
||||
from typing import Protocol, TypeVar
|
||||
|
||||
from typing_extensions import LiteralString
|
||||
|
||||
RowT_co = TypeVar("RowT_co", covariant=True)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue