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 832936f commit eb1f4dcCopy full SHA for eb1f4dc
aidbox_python_sdk/sdk.py
@@ -1,6 +1,6 @@
1
import asyncio
2
import logging
3
-from typing import Dict, Any, Optional
+from typing import Optional
4
5
import jsonschema
6
from fhirpy.base.exceptions import OperationOutcome
aidbox_python_sdk/types.py
@@ -1,12 +1,12 @@
-from typing import Any
+from typing import Any, Dict
from aiohttp import web
from typing_extensions import TypedDict
class Compliance(TypedDict, total=True):
7
fhirUrl: str
8
fhirCode: str
9
- fhirResource: list[str]
+ fhirResource: Dict[str]
10
11
SDKOperationRequest = TypedDict(
12
"SDKOperationRequest",
0 commit comments