chore: apply ruff E501 line-too-long linter rule (#8275)

Co-authored-by: -LAN- <laipz8200@outlook.com>
This commit is contained in:
Bowen Liang
2024-09-12 14:00:36 +08:00
committed by GitHub
parent 56c90e212a
commit c69f5b07ba
85 changed files with 459 additions and 324 deletions

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.