We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bd651c commit 5e8262bCopy full SHA for 5e8262b
src/strands/experimental/hooks/__init__.py
@@ -1,5 +1,7 @@
1
"""Experimental hook functionality that has not yet reached stability."""
2
3
+from typing import Any
4
+
5
from .events import (
6
BidiAfterConnectionRestartEvent,
7
BidiAfterInvocationEvent,
@@ -15,7 +17,7 @@
15
17
# Deprecated aliases are accessed via __getattr__ to emit warnings only on use
16
18
19
-def __getattr__(name: str):
20
+def __getattr__(name: str) -> Any:
21
from . import events
22
23
return getattr(events, name)
0 commit comments