7 lines
146 B
Python
7 lines
146 B
Python
from typing import Any
|
|
|
|
from httpx import Response as HTTPXResponse
|
|
|
|
class Response(HTTPXResponse):
|
|
def json(self, **kwargs: Any) -> Any: ...
|