From adf286af6daeab6d2531525963bb423cf9fe07b6 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 27 May 2025 12:27:50 +0000 Subject: [PATCH] fix: replace f-string with string format for Python 3.12 compatibility Co-Authored-By: Joe Moura --- tests/test_openai_178_compatibility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_openai_178_compatibility.py b/tests/test_openai_178_compatibility.py index cf303b0b2..6b6bb07ab 100644 --- a/tests/test_openai_178_compatibility.py +++ b/tests/test_openai_178_compatibility.py @@ -54,5 +54,5 @@ def test_openai_178_compatibility_with_multimodal(): assert result is not None, "Crew execution returned None" assert len(result.tasks_output) == 1, "Expected exactly one task output" task_output = result.tasks_output[0] - assert isinstance(task_output, TaskOutput), f"Expected TaskOutput, got {type(task_output)}" + assert isinstance(task_output, TaskOutput), "Expected TaskOutput, got {}".format(type(task_output)) assert len(task_output.raw) > 0, "Task output should contain content"