From 3ab1922dba7742dfa08607dcea0bdcd183b2a256 Mon Sep 17 00:00:00 2001 From: andrei Date: Fri, 25 Feb 2022 15:58:19 +0200 Subject: [PATCH] removed unused connection --- planetmint/backend/connection_tarantool.py | 1 - 1 file changed, 1 deletion(-) diff --git a/planetmint/backend/connection_tarantool.py b/planetmint/backend/connection_tarantool.py index 1954f37..b502de9 100644 --- a/planetmint/backend/connection_tarantool.py +++ b/planetmint/backend/connection_tarantool.py @@ -27,7 +27,6 @@ class TarantoolDB: if reset_database: self.drop_database() self.init_database() - test_conn = self.db_connect.space("transactions") def get_connection(self, space_name: str = None): return self.db_connect if space_name is None else self.db_connect.space(space_name)