Skip to content
This repository was archived by the owner on Jun 4, 2021. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion transport/retry_transport_.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def Build(self):
return RetryTransport(**self.kwargs)


class RetryTransport(httplib2.Http):
class RetryTransport:
"""A wrapper for the given transport which automatically retries errors.
"""

Expand Down
2 changes: 1 addition & 1 deletion transport/transport_pool_.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import httplib2


class Http(httplib2.Http):
class Http:
"""A threadsafe pool of httplib2.Http transports."""

def __init__(self,
Expand Down