Skip to content

Commit 035cdb4

Browse files
committed
style: fix ruff format in test_conversions.py (a2aproject#1091)
1 parent 945de8a commit 035cdb4

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/compat/v0_3/test_conversions.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,9 @@ def test_message_content_alias():
221221
'parts': [{'kind': 'text', 'text': 'response'}],
222222
}
223223
msg2 = types_v03.Message.model_validate(modern_json)
224-
assert msg2.parts == [types_v03.Part(root=types_v03.TextPart(text='response'))]
224+
assert msg2.parts == [
225+
types_v03.Part(root=types_v03.TextPart(text='response'))
226+
]
225227

226228

227229
def test_message_conversion_minimal():

0 commit comments

Comments
 (0)