mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
fix linting
This commit is contained in:
parent
c1a2379373
commit
b197b0476e
1 changed files with 2 additions and 3 deletions
|
|
@ -24,14 +24,13 @@ if TYPE_CHECKING:
|
|||
|
||||
|
||||
# Runtime import
|
||||
_A2AClient: Any = None
|
||||
A2A_SDK_AVAILABLE = False
|
||||
try:
|
||||
from a2a.client import A2AClient as _A2AClient
|
||||
from a2a.client import A2AClient as _A2AClient # type: ignore[no-redef]
|
||||
|
||||
A2A_SDK_AVAILABLE = True
|
||||
except ImportError:
|
||||
pass
|
||||
_A2AClient = None # type: ignore[misc]
|
||||
|
||||
|
||||
class A2AExceptionCheckers:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue