mirror of https://github.com/zulip/zulip.git
6 lines
168 B
Python
6 lines
168 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:
|
||
|
...
|