Skip to content

Commit 21faa2d

Browse files
committed
estuary-cdk: fix Headers type to match aiohttp response headers
1 parent 8d77cb1 commit 21faa2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

estuary-cdk/estuary_cdk/http.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from google.auth.credentials import TokenState as GoogleTokenState
1212
from google.auth.transport.requests import Request as GoogleAuthRequest
1313
from google.oauth2.service_account import Credentials as GoogleServiceAccountCredentials
14-
from multidict import CIMultiDict
14+
from multidict import CIMultiDictProxy
1515
from pydantic import BaseModel
1616

1717
from . import Mixin
@@ -37,7 +37,7 @@
3737

3838
T = TypeVar("T")
3939

40-
Headers = CIMultiDict[str]
40+
Headers = CIMultiDictProxy[str]
4141

4242
BodyGeneratorFunction = Callable[[], AsyncGenerator[bytes, None]]
4343
HeadersAndBodyGenerator = tuple[Headers, BodyGeneratorFunction]

0 commit comments

Comments
 (0)