From 4dc36dbb8e58f3a912c07a0fc53d562df3086c68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=C3=A4schle?= Date: Thu, 15 Aug 2024 08:57:39 +0200 Subject: [PATCH] fix: remove print statements in except block --- weaviate/client_base.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/weaviate/client_base.py b/weaviate/client_base.py index 2a3dbfbaa..6b2e3d151 100644 --- a/weaviate/client_base.py +++ b/weaviate/client_base.py @@ -168,7 +168,6 @@ async def is_live(self) -> bool: return True return False except Exception as e: - print(e) return False async def is_ready(self) -> bool: @@ -178,7 +177,6 @@ async def is_ready(self) -> bool: return True return False except Exception as e: - print(e) return False async def graphql_raw_query(self, gql_query: str) -> _RawGQLReturn: