From a0ba993d89fe42f0548b729c0fc5b0f8149015ca Mon Sep 17 00:00:00 2001 From: Ilya Kobets Date: Sun, 10 Sep 2023 14:42:44 +0200 Subject: [PATCH] Remove unnecessary output --- testgres/connection.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/testgres/connection.py b/testgres/connection.py index aeb040ce..882498a9 100644 --- a/testgres/connection.py +++ b/testgres/connection.py @@ -110,8 +110,7 @@ def execute(self, query, *args): res = [tuple(t) for t in res] return res - except Exception as e: - print("Error executing query: {}".format(e)) + except Exception: return None def close(self):