Skip to content

Commit

Permalink
Remove http client base (#1243)
Browse files Browse the repository at this point in the history
  • Loading branch information
richardm-stripe committed Feb 20, 2024
1 parent aa7d8bf commit 8ee92b4
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions stripe/_http_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,7 @@ def new_default_http_client(*args: Any, **kwargs: Any) -> "HTTPClient":
return impl(*args, **kwargs)


class HTTPClientBase(object):

class HTTPClient(object):
name: ClassVar[str]

class _Proxy(TypedDict):
Expand Down Expand Up @@ -259,8 +258,6 @@ def _record_request_metrics(self, response, request_start, usage):
request_id, request_duration_ms, usage=usage
)


class HTTPClient(HTTPClientBase):
# TODO: more specific types here would be helpful
def request_with_retries(
self,
Expand Down

0 comments on commit 8ee92b4

Please sign in to comment.