Skip to content

Commit 63091f7

Browse files
committed
lint/format
1 parent 4f66e6d commit 63091f7

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ iam_client = aws_iam_mcp_client(
243243
async with iam_client as (read, write, session_id_callback):
244244
async with ClientSession(read, write) as session:
245245
tools = await McpToolSpec(client=session).to_tool_list_async()
246-
agent = ReActAgent(llm=model, tools=tools)
246+
agent = ReActAgent(tools=tools, ...)
247247
```
248248

249249
### Running Examples

mcp_proxy_for_aws/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,5 @@
1717
from importlib.metadata import version as _metadata_version
1818

1919

20-
__version__ = _metadata_version('mcp-proxy-for-aws')
21-
2220
__all__ = ['__version__']
21+
__version__ = _metadata_version('mcp-proxy-for-aws')

0 commit comments

Comments
 (0)