From dcf8e8d6e73d00dd1cc16c8f52d7860108019625 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 11 Mar 2025 05:46:17 +0000 Subject: [PATCH] Fix linting issues in test file Co-Authored-By: Joe Moura --- tests/test_optional_dependencies.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_optional_dependencies.py b/tests/test_optional_dependencies.py index fd0d8a516..08b5c955e 100644 --- a/tests/test_optional_dependencies.py +++ b/tests/test_optional_dependencies.py @@ -1,8 +1,10 @@ import importlib import sys from unittest import mock + import pytest + def test_rag_storage_without_chromadb(): # Mock the import to simulate chromadb not being installed with mock.patch.dict(sys.modules, {'chromadb': None}):