Skip to content

Commit c5eabdf

Browse files
author
Andrei Neagu
committed
mypy issue
1 parent 570bf26 commit c5eabdf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/simcore-sdk/src/simcore_sdk/node_ports_common/file_io_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
ClientSession,
1818
RequestInfo,
1919
)
20-
from aiohttp.typedefs import LooseHeaders
2120
from models_library.api_schemas_storage import ETag, FileUploadSchema, UploadedPart
2221
from models_library.basic_types import IDStr, SHA256Str
22+
from multidict import MultiMapping
2323
from pydantic import AnyUrl, NonNegativeInt
2424
from servicelib.aiohttp import status
2525
from servicelib.logging_utils import log_catch
@@ -62,7 +62,7 @@ def __init__(
6262
code: int | None = None,
6363
status_code: int | None = None,
6464
message: str = "",
65-
headers: LooseHeaders | None = None,
65+
headers: MultiMapping[str] | None = None,
6666
):
6767
super().__init__(
6868
request_info,

0 commit comments

Comments
 (0)