diff --git a/stubs/httplib2/METADATA.toml b/stubs/httplib2/METADATA.toml index e22598a66..119cc4674 100644 --- a/stubs/httplib2/METADATA.toml +++ b/stubs/httplib2/METADATA.toml @@ -1 +1,4 @@ version = "0.21.*" + +[tool.stubtest] +ignore_missing_stub = false diff --git a/stubs/httplib2/httplib2/__init__.pyi b/stubs/httplib2/httplib2/__init__.pyi index 43178c9ad..92d911225 100644 --- a/stubs/httplib2/httplib2/__init__.pyi +++ b/stubs/httplib2/httplib2/__init__.pyi @@ -1,7 +1,7 @@ import http.client from _typeshed import Self from collections.abc import Generator -from typing import Any +from typing import Any, ClassVar from .error import * @@ -48,6 +48,7 @@ class HmacDigestAuthentication(Authentication): hashmod: Any pwhashmod: Any key: Any + __author__: ClassVar[str] def __init__(self, credentials, host, request_uri, headers, response, content, http) -> None: ... def request(self, method, request_uri, headers, content) -> None: ... def response(self, response, content): ...