mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 13:34:58 +08:00
boto: drop dependency on types-six (#8792)
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
version = "2.49.*"
|
||||
requires = ["types-six"]
|
||||
requires = []
|
||||
|
||||
@@ -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 = ...): ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user