From e1114c2726fc1727fafd3754ec219266275763a9 Mon Sep 17 00:00:00 2001 From: David Holtz Date: Mon, 28 Oct 2024 03:07:15 +0000 Subject: [PATCH] fix: lint test --- .../models/test_flash_qwen2_vl.py | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/integration-tests/models/test_flash_qwen2_vl.py b/integration-tests/models/test_flash_qwen2_vl.py index 986e442e..86582673 100644 --- a/integration-tests/models/test_flash_qwen2_vl.py +++ b/integration-tests/models/test_flash_qwen2_vl.py @@ -25,18 +25,18 @@ async def test_flash_qwen2_vl_simple(flash_qwen2, response_snapshot): max_tokens=100, seed=42, messages=[ - { - "role": "user", - "content": [ - { - "type": "image_url", - "image_url": { - "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/transformers/rabbit.png" + { + "role": "user", + "content": [ + { + "type": "image_url", + "image_url": { + "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/transformers/rabbit.png" + }, }, - }, - {"type": "text", "text": "Describe this image."}, - ], - }, + {"type": "text", "text": "Describe this image."}, + ], + }, ], )