From e2f8177b2326c440d88563424c72bbbf081c8a2d Mon Sep 17 00:00:00 2001 From: Andrew Huang Date: Sun, 10 Nov 2024 20:03:58 -0800 Subject: [PATCH] lint --- .../tests/integration_tests/callbacks/test_panel_callback.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/community/tests/integration_tests/callbacks/test_panel_callback.py b/libs/community/tests/integration_tests/callbacks/test_panel_callback.py index 4df805612195b..c08360b6f2f2c 100644 --- a/libs/community/tests/integration_tests/callbacks/test_panel_callback.py +++ b/libs/community/tests/integration_tests/callbacks/test_panel_callback.py @@ -1,7 +1,6 @@ """Integration tests for the PanelCallbackHandler module.""" import pytest -from langchain_community.llms import OpenAI # Import the internal PanelCallbackHandler from its module - and not from # the `langchain_community.callbacks.streamlit` package - so that we don't end up using @@ -9,6 +8,7 @@ from langchain_community.callbacks.panel_callback import ( PanelCallbackHandler, ) +from langchain_community.llms import OpenAI @pytest.mark.requires("panel")