Skip to content

Commit

Permalink
Review fix
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeny-stakewise committed Sep 27, 2023
1 parent 3d12e9c commit 61ad124
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sw_utils/consensus.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def _format_uri(self, uri: str):
if len(uri) <= max_len:
return uri

return f'{uri[:max_len]}...[cropped]'
return f'{uri[:max_len]}...'

async def _async_make_get_request_inner(self, endpoint_uri: str) -> dict[str, Any]:
for i, url in enumerate(self.base_urls):
Expand Down

0 comments on commit 61ad124

Please sign in to comment.