Skip to content

Commit d07e18c

Browse files
committed
refactor: remove unnecessary quotes from ToolPool type hint
- ToolPool is imported at top so quotes not needed in type annotation - Cleaner type hints following Python typing best practices 🤖 Assisted by Amazon Q Developer
1 parent 9258fb2 commit d07e18c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/strands/experimental/agent_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
class AgentConfig:
1919
"""Agent configuration with toAgent() method and ToolPool integration."""
2020

21-
def __init__(self, config_source: str | dict[str, any], tool_pool: "ToolPool | None" = None):
21+
def __init__(self, config_source: str | dict[str, any], tool_pool: ToolPool | None = None):
2222
"""Initialize AgentConfig from file path or dictionary.
2323
2424
Args:

0 commit comments

Comments
 (0)