You've already forked adk-python
mirror of
https://github.com/encounter/adk-python.git
synced 2026-03-30 10:57:20 -07:00
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:
committed by
Copybara-Service
parent
bd21847295
commit
1ce043a278
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user