From d4b7846f4c69c1354ec7c286bb9e77ecbe2445b5 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 3 Apr 2025 17:32:26 +0000 Subject: [PATCH] fix: Sort imports in test file to fix lint errors Co-Authored-By: Joe Moura --- tests/test_dependency_compatibility.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_dependency_compatibility.py b/tests/test_dependency_compatibility.py index 5bb5df693..4c5e6bfa7 100644 --- a/tests/test_dependency_compatibility.py +++ b/tests/test_dependency_compatibility.py @@ -1,6 +1,6 @@ import importlib.util -import sys import pytest +import sys def test_httpx_litellm_compatibility(): @@ -20,8 +20,8 @@ def test_exa_py_compatibility(): pytest.skip("exa-py not installed") import exa - import litellm import httpx + import litellm assert hasattr(exa, "__version__") assert hasattr(httpx, "__version__") @@ -37,8 +37,8 @@ def test_google_genai_compatibility(): pytest.skip("google-genai not installed") from google import generativeai - import litellm import httpx + import litellm assert hasattr(generativeai, "version") assert hasattr(httpx, "__version__")