chore: Fixes BasePlugin#after_run_callback return type hint

`Optional[None]` is `Union[None, None]`, which is essentially None.

PiperOrigin-RevId: 807515970
This commit is contained in:
Wei Sun (Jack)
2025-09-15 21:32:33 -07:00
committed by Copybara-Service
parent bd21847295
commit 1ce043a278
+1 -1
View File
@@ -173,7 +173,7 @@ class BasePlugin(ABC):
async def after_run_callback(
self, *, invocation_context: InvocationContext
) -> Optional[None]:
) -> None:
"""Callback executed after an ADK runner run has completed.
This is the final callback in the ADK lifecycle, suitable for cleanup, final