Skip to content

Commit c1eb9a4

Browse files
authored
chore: style (#259)
1 parent c3609ae commit c1eb9a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/erc7730/common/client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@ def _client() -> Client:
117117
http_transport = HTTPTransport()
118118
http_transport = GithubTransport(http_transport)
119119
http_transport = EtherscanTransport(http_transport)
120-
http_transport = CacheTransport(transport=RetryTransport(http_transport), storage=cache_storage)
120+
http_transport = RetryTransport(transport=http_transport)
121+
http_transport = CacheTransport(transport=http_transport, storage=cache_storage)
121122
file_transport = FileTransport()
122123
# TODO file storage: authorize relative paths only
123124
transports = {"https://": http_transport, "file://": file_transport}

0 commit comments

Comments
 (0)