Skip to content

Commit 735a532

Browse files
committed
Pull static
1 parent e58905b commit 735a532

File tree

2 files changed

+19
-18
lines changed

2 files changed

+19
-18
lines changed

mypy_boto3_builder/stubs_static/types-aiobotocore/endpoint.pyi

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,26 @@ Copyright 2025 Vlad Emelianov
66

77
from typing import Any, Mapping
88

9+
from aiobotocore.awsrequest import AioAWSResponse
910
from aiobotocore.httpsession import AIOHTTPSession as AIOHTTPSession
1011
from aiobotocore.response import StreamingBody as StreamingBody
12+
from botocore.awsrequest import AWSPreparedRequest
1113
from botocore.endpoint import DEFAULT_TIMEOUT as DEFAULT_TIMEOUT
1214
from botocore.endpoint import MAX_POOL_CONNECTIONS as MAX_POOL_CONNECTIONS
1315
from botocore.endpoint import Endpoint, EndpointCreator
1416
from botocore.model import OperationModel, ServiceModel
15-
from requests.models import Request, Response
1617

1718
DEFAULT_HTTP_SESSION_CLS: type[AIOHTTPSession] = ...
1819

1920
async def convert_to_response_dict(
20-
http_response: Response, operation_model: OperationModel
21+
http_response: AioAWSResponse, operation_model: OperationModel
2122
) -> dict[str, Any]: ...
2223

2324
class AioEndpoint(Endpoint):
2425
async def close(self) -> None: ... # type: ignore[override]
2526
async def create_request(
2627
self, params: Mapping[str, Any], operation_model: OperationModel | None = ...
27-
) -> Request: ...
28+
) -> AWSPreparedRequest: ...
2829

2930
class AioEndpointCreator(EndpointCreator):
3031
def create_endpoint( # type: ignore[override]

uv.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)