Fix lint issues: remove unused imports

- Remove unused 'Crew' import from both test files
- Remove unused 'pytest' import from test_langdb_documentation.py
- Keep only imports that are actually used in the code

Fixes lint check failure in PR #3241

Co-Authored-By: João <joao@crewai.com>
This commit is contained in:
Devin AI
2025-07-30 10:06:59 +00:00
parent dce11df0b7
commit 8ab236a68e
2 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
from crewai import Agent, Task, Crew, LLM
from crewai import Agent, Task, LLM
def test_langdb_basic_integration_example():

View File

@@ -1,7 +1,6 @@
"""Test for the LangDB documentation examples."""
import pytest
from crewai import Agent, Task, Crew, LLM
from crewai import Agent, Task, LLM
def test_langdb_basic_integration_example():