From bde394024f5e7f64d963562181ac459b9cacc657 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 16 Apr 2025 12:09:46 +0000 Subject: [PATCH] Fix: Format imports in test file to fix lint error Co-Authored-By: Joe Moura --- tests/knowledge/test_knowledge_source_instantiation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/knowledge/test_knowledge_source_instantiation.py b/tests/knowledge/test_knowledge_source_instantiation.py index 6b83f96d4..b13042d6c 100644 --- a/tests/knowledge/test_knowledge_source_instantiation.py +++ b/tests/knowledge/test_knowledge_source_instantiation.py @@ -5,6 +5,7 @@ import pytest from crewai.knowledge.source.pdf_knowledge_source import PDFKnowledgeSource + @patch('crewai.knowledge.source.base_file_knowledge_source.BaseFileKnowledgeSource.validate_content') @patch('crewai.knowledge.source.pdf_knowledge_source.PDFKnowledgeSource.load_content') def test_pdf_knowledge_source_instantiation(mock_load_content, mock_validate_content, tmp_path):