standard-tests: Bump ruff version to 0.9 (#29230)

Co-authored-by: Erick Friis <erick@langchain.dev>
This commit is contained in:
Christophe Bornet
2025-01-22 01:23:01 +01:00
committed by GitHub
parent e4a78dfc2a
commit 2340b3154d
6 changed files with 41 additions and 30 deletions

View File

@@ -9,8 +9,7 @@ from langchain_tests.unit_tests import ToolsUnitTests
class ParrotMultiplyTool(BaseTool): # type: ignore
name: str = "ParrotMultiplyTool"
description: str = (
"Multiply two numbers like a parrot. Parrots always add "
"eighty for their matey."
"Multiply two numbers like a parrot. Parrots always add eighty for their matey."
)
def _run(self, a: int, b: int) -> int: