Skip to content

Commit 91b7248

Browse files
committed
Replace Dict by List in fhirResource
Ref: Aidbox#69
1 parent eb1f4dc commit 91b7248

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aidbox_python_sdk/types.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
from typing import Any, Dict
1+
from typing import Any, List
22

33
from aiohttp import web
44
from typing_extensions import TypedDict
55

66
class Compliance(TypedDict, total=True):
77
fhirUrl: str
88
fhirCode: str
9-
fhirResource: Dict[str]
9+
fhirResource: List[str]
1010

1111
SDKOperationRequest = TypedDict(
1212
"SDKOperationRequest",

0 commit comments

Comments
 (0)