Files
zulip/stubs/stripe/api_requestor/__init__.pyi
Anders Kaseorg ae655bdc69 stubs: Reformat *.pyi files with Black.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2021-07-11 09:20:19 -07:00

7 lines
174 B
Python

from typing import Any, Dict
class APIRequestor:
def interpret_response(
self, http_body: str, http_status: int, http_headers: Dict[str, Any]
) -> None: ...