From c340400582f3aff50bf7433d36b6405334414963 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Mon, 24 Mar 2025 14:52:57 +0000 Subject: [PATCH] Fix import ordering in test file Co-Authored-By: Joe Moura --- tests/project/test_yaml_config.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/project/test_yaml_config.py b/tests/project/test_yaml_config.py index b8cb1ff93..37efbd858 100644 --- a/tests/project/test_yaml_config.py +++ b/tests/project/test_yaml_config.py @@ -1,9 +1,10 @@ -import pytest -import yaml +import os +import sys import tempfile from pathlib import Path -import sys -import os + +import pytest +import yaml # Add a simple test to verify the fix works def test_list_format_in_yaml():