Skip to content

Commit eb1f4dc

Browse files
committed
Remove unused imports
Ref: #69
1 parent 832936f commit eb1f4dc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

aidbox_python_sdk/sdk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import asyncio
22
import logging
3-
from typing import Dict, Any, Optional
3+
from typing import Optional
44

55
import jsonschema
66
from fhirpy.base.exceptions import OperationOutcome

aidbox_python_sdk/types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
from typing import Any
1+
from typing import Any, Dict
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: list[str]
9+
fhirResource: Dict[str]
1010

1111
SDKOperationRequest = TypedDict(
1212
"SDKOperationRequest",

0 commit comments

Comments
 (0)