From c7ad0d37c1b2dff713ba5d33fcfab8ae74b84803 Mon Sep 17 00:00:00 2001 From: "David S. Batista" Date: Mon, 19 Aug 2024 11:14:59 +0200 Subject: [PATCH] linting --- .../amazon_bedrock/tests/test_chat_generator.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/integrations/amazon_bedrock/tests/test_chat_generator.py b/integrations/amazon_bedrock/tests/test_chat_generator.py index 259e04981..98f20fc2d 100644 --- a/integrations/amazon_bedrock/tests/test_chat_generator.py +++ b/integrations/amazon_bedrock/tests/test_chat_generator.py @@ -229,11 +229,11 @@ def test_long_prompt_is_not_truncated_when_truncate_false(mock_boto3_session): role=ChatRole.ASSISTANT, name=None, meta={ - "model": "claude-3-sonnet-20240229", - "index": 0, - "finish_reason": "end_turn", - "usage": {"prompt_tokens": 16, "completion_tokens": 55}, - } + "model": "claude-3-sonnet-20240229", + "index": 0, + "finish_reason": "end_turn", + "usage": {"prompt_tokens": 16, "completion_tokens": 55}, + }, ) ] )