removed unused connection

This commit is contained in:
andrei 2022-02-25 15:58:19 +02:00
parent bd373d0419
commit 3ab1922dba

View File

@ -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)