diff --git a/stubs/boto/METADATA.toml b/stubs/boto/METADATA.toml index e34024ecc..ec10613d5 100644 --- a/stubs/boto/METADATA.toml +++ b/stubs/boto/METADATA.toml @@ -1,2 +1,2 @@ version = "2.49.*" -requires = ["types-six"] +requires = [] diff --git a/stubs/boto/boto/connection.pyi b/stubs/boto/boto/connection.pyi index 9e069c577..135ff9168 100644 --- a/stubs/boto/boto/connection.pyi +++ b/stubs/boto/boto/connection.pyi @@ -1,7 +1,6 @@ +import http.client from typing import Any -from six.moves import http_client - HAVE_HTTPS_CONNECTION: bool ON_APP_ENGINE: Any PORTS_BY_SECURITY: Any @@ -40,7 +39,7 @@ class HTTPRequest: def __init__(self, method, protocol, host, port, path, auth_path, params, headers, body) -> None: ... def authorize(self, connection, **kwargs): ... -class HTTPResponse(http_client.HTTPResponse): +class HTTPResponse(http.client.HTTPResponse): def __init__(self, *args, **kwargs) -> None: ... def read(self, amt: Any | None = ...): ...