chore: avoid implicit optional in type annotations of method (#8727)

This commit is contained in:
Bowen Liang
2024-10-09 14:36:43 +08:00
committed by GitHub
parent b360feb4c1
commit 240b66d737
37 changed files with 91 additions and 71 deletions

View File

@@ -1,5 +1,6 @@
import json
from datetime import datetime
from typing import Optional
from sqlalchemy import or_
@@ -32,7 +33,7 @@ class WorkflowToolManageService:
description: str,
parameters: list[dict],
privacy_policy: str = "",
labels: list[str] = None,
labels: Optional[list[str]] = None,
) -> dict:
"""
Create a workflow tool.
@@ -106,7 +107,7 @@ class WorkflowToolManageService:
description: str,
parameters: list[dict],
privacy_policy: str = "",
labels: list[str] = None,
labels: Optional[list[str]] = None,
) -> dict:
"""
Update a workflow tool.