Skip to content

Commit dcbe68a

Browse files
style: fix line length in fake_chat_models.py
Split long line to comply with max line length of 88 characters.
1 parent 20827bb commit dcbe68a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libs/core/langchain_core/language_models/fake_chat_models.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,9 @@ def _generate(
386386
run_manager: CallbackManagerForLLMRun | None = None,
387387
**kwargs: Any,
388388
) -> ChatResult:
389-
return ChatResult(generations=[ChatGeneration(message=messages[-1])], llm_output={})
389+
return ChatResult(
390+
generations=[ChatGeneration(message=messages[-1])], llm_output={}
391+
)
390392

391393
@property
392394
def _llm_type(self) -> str:

0 commit comments

Comments
 (0)