From f42fba6fa9340b587accdbc64d3073e316435c4d Mon Sep 17 00:00:00 2001 From: Filipi Fuchter Date: Thu, 27 Nov 2025 16:35:49 -0300 Subject: [PATCH] Fixing ruff format. --- examples/aws-agentcore/bot_hellow.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/aws-agentcore/bot_hellow.py b/examples/aws-agentcore/bot_hellow.py index b4e599ae0..89a72f475 100644 --- a/examples/aws-agentcore/bot_hellow.py +++ b/examples/aws-agentcore/bot_hellow.py @@ -2,9 +2,11 @@ from bedrock_agentcore import BedrockAgentCoreApp app = BedrockAgentCoreApp() + @app.entrypoint def my_agent(payload): return {"result": f"Hello {payload.get('name', 'World')}!"} + if __name__ == "__main__": - app.run() \ No newline at end of file + app.run()