chore: apply ruff E501 line-too-long linter rule (#8275)
Co-authored-by: -LAN- <laipz8200@outlook.com>
This commit is contained in:
@@ -17,7 +17,8 @@ class CreateListOnBoardTool(BuiltinTool):
|
||||
|
||||
Args:
|
||||
user_id (str): The ID of the user invoking the tool.
|
||||
tool_parameters (dict[str, Union[str, int, bool]]): The parameters for the tool invocation, including the board ID and list name.
|
||||
tool_parameters (dict[str, Union[str, int, bool]]): The parameters for the tool invocation,
|
||||
including the board ID and list name.
|
||||
|
||||
Returns:
|
||||
ToolInvokeMessage: The result of the tool invocation.
|
||||
|
@@ -17,7 +17,8 @@ class CreateNewCardOnBoardTool(BuiltinTool):
|
||||
|
||||
Args:
|
||||
user_id (str): The ID of the user invoking the tool.
|
||||
tool_parameters (dict[str, Union[str, int, bool, None]]): The parameters for the tool invocation, including details for the new card.
|
||||
tool_parameters (dict[str, Union[str, int, bool, None]]): The parameters for the tool invocation,
|
||||
including details for the new card.
|
||||
|
||||
Returns:
|
||||
ToolInvokeMessage: The result of the tool invocation.
|
||||
|
@@ -17,7 +17,8 @@ class DeleteBoardTool(BuiltinTool):
|
||||
|
||||
Args:
|
||||
user_id (str): The ID of the user invoking the tool.
|
||||
tool_parameters (dict[str, Union[str, int, bool]]): The parameters for the tool invocation, including the board ID.
|
||||
tool_parameters (dict[str, Union[str, int, bool]]): The parameters for the tool invocation,
|
||||
including the board ID.
|
||||
|
||||
Returns:
|
||||
ToolInvokeMessage: The result of the tool invocation.
|
||||
|
@@ -17,7 +17,8 @@ class DeleteCardByIdTool(BuiltinTool):
|
||||
|
||||
Args:
|
||||
user_id (str): The ID of the user invoking the tool.
|
||||
tool_parameters (dict[str, Union[str, int, bool]]): The parameters for the tool invocation, including the card ID.
|
||||
tool_parameters (dict[str, Union[str, int, bool]]): The parameters for the tool invocation,
|
||||
including the card ID.
|
||||
|
||||
Returns:
|
||||
ToolInvokeMessage: The result of the tool invocation.
|
||||
|
@@ -17,7 +17,8 @@ class GetBoardActionsTool(BuiltinTool):
|
||||
|
||||
Args:
|
||||
user_id (str): The ID of the user invoking the tool.
|
||||
tool_parameters (dict[str, Union[str, int, bool]]): The parameters for the tool invocation, including the board ID.
|
||||
tool_parameters (dict[str, Union[str, int, bool]]): The parameters for the tool invocation,
|
||||
including the board ID.
|
||||
|
||||
Returns:
|
||||
ToolInvokeMessage: The result of the tool invocation.
|
||||
|
@@ -17,7 +17,8 @@ class GetBoardByIdTool(BuiltinTool):
|
||||
|
||||
Args:
|
||||
user_id (str): The ID of the user invoking the tool.
|
||||
tool_parameters (dict[str, Union[str, int, bool]]): The parameters for the tool invocation, including the board ID.
|
||||
tool_parameters (dict[str, Union[str, int, bool]]): The parameters for the tool invocation,
|
||||
including the board ID.
|
||||
|
||||
Returns:
|
||||
ToolInvokeMessage: The result of the tool invocation.
|
||||
|
@@ -17,7 +17,8 @@ class GetBoardCardsTool(BuiltinTool):
|
||||
|
||||
Args:
|
||||
user_id (str): The ID of the user invoking the tool.
|
||||
tool_parameters (dict[str, Union[str, int, bool]]): The parameters for the tool invocation, including the board ID.
|
||||
tool_parameters (dict[str, Union[str, int, bool]]): The parameters for the tool invocation,
|
||||
including the board ID.
|
||||
|
||||
Returns:
|
||||
ToolInvokeMessage: The result of the tool invocation.
|
||||
|
@@ -17,7 +17,8 @@ class GetFilteredBoardCardsTool(BuiltinTool):
|
||||
|
||||
Args:
|
||||
user_id (str): The ID of the user invoking the tool.
|
||||
tool_parameters (dict[str, Union[str, int, bool]]): The parameters for the tool invocation, including the board ID and filter.
|
||||
tool_parameters (dict[str, Union[str, int, bool]]): The parameters for the tool invocation,
|
||||
including the board ID and filter.
|
||||
|
||||
Returns:
|
||||
ToolInvokeMessage: The result of the tool invocation.
|
||||
|
@@ -17,7 +17,8 @@ class GetListsFromBoardTool(BuiltinTool):
|
||||
|
||||
Args:
|
||||
user_id (str): The ID of the user invoking the tool.
|
||||
tool_parameters (dict[str, Union[str, int, bool]]): The parameters for the tool invocation, including the board ID.
|
||||
tool_parameters (dict[str, Union[str, int, bool]]): The parameters for the tool invocation,
|
||||
including the board ID.
|
||||
|
||||
Returns:
|
||||
ToolInvokeMessage: The result of the tool invocation.
|
||||
|
@@ -17,7 +17,8 @@ class UpdateBoardByIdTool(BuiltinTool):
|
||||
|
||||
Args:
|
||||
user_id (str): The ID of the user invoking the tool.
|
||||
tool_parameters (dict[str, Union[str, int, bool, None]]): The parameters for the tool invocation, including board ID and updates.
|
||||
tool_parameters (dict[str, Union[str, int, bool, None]]): The parameters for the tool invocation,
|
||||
including board ID and updates.
|
||||
|
||||
Returns:
|
||||
ToolInvokeMessage: The result of the tool invocation.
|
||||
|
@@ -17,7 +17,8 @@ class UpdateCardByIdTool(BuiltinTool):
|
||||
|
||||
Args:
|
||||
user_id (str): The ID of the user invoking the tool.
|
||||
tool_parameters (dict[str, Union[str, int, bool, None]]): The parameters for the tool invocation, including the card ID and updates.
|
||||
tool_parameters (dict[str, Union[str, int, bool, None]]): The parameters for the tool invocation,
|
||||
including the card ID and updates.
|
||||
|
||||
Returns:
|
||||
ToolInvokeMessage: The result of the tool invocation.
|
||||
|
Reference in New Issue
Block a user