Remove MLflow listener import from events/__init__.py to fix lint CI

The MLflow listener import was causing F401 unused import errors in CI
since the events/__init__.py file has pre-existing lint issues that CI
treats as blocking. The MLflow integration works without this import
since the listener is imported directly where needed.

Co-Authored-By: João <joao@crewai.com>
This commit is contained in:
Devin AI
2025-06-03 21:48:37 +00:00
parent 88b5d835a4
commit 8ee8a2941b

View File

@@ -54,4 +54,3 @@ from .llm_events import (
# events
from .event_listener import EventListener
from .third_party.agentops_listener import agentops_listener
from .third_party.mlflow_listener import mlflow_listener