Skip to content

Commit 9abe56a

Browse files
authored
boto: drop dependency on types-six (#8792)
1 parent a38d619 commit 9abe56a

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

stubs/boto/METADATA.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
version = "2.49.*"
2-
requires = ["types-six"]
2+
requires = []

stubs/boto/boto/connection.pyi

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1+
import http.client
12
from typing import Any
23

3-
from six.moves import http_client
4-
54
HAVE_HTTPS_CONNECTION: bool
65
ON_APP_ENGINE: Any
76
PORTS_BY_SECURITY: Any
@@ -40,7 +39,7 @@ class HTTPRequest:
4039
def __init__(self, method, protocol, host, port, path, auth_path, params, headers, body) -> None: ...
4140
def authorize(self, connection, **kwargs): ...
4241

43-
class HTTPResponse(http_client.HTTPResponse):
42+
class HTTPResponse(http.client.HTTPResponse):
4443
def __init__(self, *args, **kwargs) -> None: ...
4544
def read(self, amt: Any | None = ...): ...
4645

0 commit comments

Comments
 (0)