From 61ad12464089c2fb89b5cf85d3702e2814218bc7 Mon Sep 17 00:00:00 2001 From: Evgeny Gusarov Date: Wed, 27 Sep 2023 13:31:24 +0300 Subject: [PATCH] Review fix --- sw_utils/consensus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw_utils/consensus.py b/sw_utils/consensus.py index 9cb3c3a..23a4fa3 100644 --- a/sw_utils/consensus.py +++ b/sw_utils/consensus.py @@ -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):