From 52dacc594816b3a3212076fcf5446a9f543cfc72 Mon Sep 17 00:00:00 2001 From: Shengsheng Huang Date: Wed, 27 Mar 2024 02:07:48 +0800 Subject: [PATCH] fix lint --- libs/community/langchain_community/llms/bigdl_llm.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/community/langchain_community/llms/bigdl_llm.py b/libs/community/langchain_community/llms/bigdl_llm.py index 18decd814fcbb..9b9bf9f30107c 100644 --- a/libs/community/langchain_community/llms/bigdl_llm.py +++ b/libs/community/langchain_community/llms/bigdl_llm.py @@ -1,9 +1,10 @@ import logging from typing import Any, Optional -from langchain_community.llms.ipex_llm import IpexLLM from langchain_core.language_models.llms import LLM +from langchain_community.llms.ipex_llm import IpexLLM + logger = logging.getLogger(__name__) class BigdlLLM(IpexLLM):