Skip to content

Commit

Permalink
Removed unused response
Browse files Browse the repository at this point in the history
  • Loading branch information
Razikus committed May 27, 2022
1 parent 464a79f commit bdcbda9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions immudb/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2

from immudb import grpcutils
from immudb.grpc.schema_pb2 import OpenSessionResponse
from immudb.handler import (batchGet, batchSet, changePassword, changePermission, createUser,
currentRoot, createDatabase, databaseList, deleteKeys, useDatabase,
get, listUsers, sqldescribe, verifiedGet, verifiedSet, setValue, history,
Expand Down Expand Up @@ -180,7 +179,7 @@ def openSession(self, username, password, database=b"defaultdb"):
password=convertedPassword,
databaseName=convertedDatabase
)
self._session_response = schema_pb2_grpc.schema__pb2.OpenSessionResponse = self.__stub.OpenSession(
self._session_response = self.__stub.OpenSession(
req)
self.__stub = self.set_session_id_interceptor(self._session_response)
return transaction.Tx(self.__stub, self._session_response, self.channel)
Expand Down

0 comments on commit bdcbda9

Please sign in to comment.