We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19f3561 commit 38f77f4Copy full SHA for 38f77f4
volcenginesdkarkruntime/_client.py
@@ -8,7 +8,7 @@
8
from collections import defaultdict
9
10
from httpx import Timeout, URL, Client, AsyncClient
11
-from typing import Dict, Tuple
+from typing import Dict, Tuple, Optional
12
13
from volcenginesdkcore.rest import ApiException
14
from ._exceptions import ArkAPIError
@@ -379,7 +379,7 @@ def _load_api_key(
379
380
381
class CertificateResponse(BaseModel):
382
- error: Dict[str, str] = None
+ error: Optional[Dict[str,str]] = None
383
"""The error information."""
384
385
Certificate: str
0 commit comments