Skip to content

Commit f27c96e

Browse files
authored
fix: the lint error of llm.py (bytedance#369)
1 parent b7373fb commit f27c96e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/llms/llm.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def _create_llm_use_conf(
7575

7676
# Handle SSL verification settings
7777
verify_ssl = merged_conf.pop("verify_ssl", True)
78-
78+
7979
# Create custom HTTP client if SSL verification is disabled
8080
if not verify_ssl:
8181
http_client = httpx.Client(verify=False)
@@ -90,7 +90,6 @@ def _create_llm_use_conf(
9090
)
9191

9292

93-
9493
def get_llm_by_type(
9594
llm_type: LLMType,
9695
) -> ChatOpenAI:

0 commit comments

Comments
 (0)