boto: drop dependency on types-six (#8792)

This commit is contained in:
Shantanu
2022-09-26 06:01:19 -07:00
committed by GitHub
parent a38d619c70
commit 9abe56a19a
2 changed files with 3 additions and 4 deletions

View File

@@ -1,2 +1,2 @@
version = "2.49.*"
requires = ["types-six"]
requires = []

View File

@@ -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 = ...): ...