mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
fix(mypy): correct type ignore comment for A2AClient assignment
The error code is 'assignment' not 'misc' when assigning None to _A2AClient.
This commit is contained in:
parent
32116cf433
commit
35cd61c8d4
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@ try:
|
|||
|
||||
A2A_SDK_AVAILABLE = True
|
||||
except ImportError:
|
||||
_A2AClient = None # type: ignore[misc]
|
||||
_A2AClient = None # type: ignore[assignment]
|
||||
|
||||
|
||||
class A2AExceptionCheckers:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue