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:
Shin 2026-02-07 01:51:08 +00:00
parent 32116cf433
commit 35cd61c8d4

View file

@ -30,7 +30,7 @@ try:
A2A_SDK_AVAILABLE = True
except ImportError:
_A2AClient = None # type: ignore[misc]
_A2AClient = None # type: ignore[assignment]
class A2AExceptionCheckers: