Skip to content
Snippets Groups Projects
Commit 8acf4529 authored by Eugine Blikh's avatar Eugine Blikh
Browse files

Remove trailing whitespaces

parent b2b293a7
No related branches found
No related tags found
No related merge requests found
......@@ -53,16 +53,16 @@ class BoxConnection(TarantoolConnection):
self.py_con = tnt_connection(host, port, connect_now=False)
self.py_con.error = False
self.sort = False
def connect(self):
self.py_con.connect()
def disconnect(self):
self.py_con.close()
def reconnect(self):
self.disconnect()
self.connect()
self.connect()
def set_schema(self, schemadict):
self.py_con.schema = Schema(schemadict)
......@@ -82,7 +82,7 @@ class BoxConnection(TarantoolConnection):
if statement == None:
return "You have an error in your SQL syntax\n"
statement.sort = self.sort
response = None
request = statement.pack(self.py_con)
with warnings.catch_warnings():
......
......@@ -196,7 +196,7 @@ class StatementSelect(Statement):
self.limit = limit
def pack(self, connection):
return RequestSelect(connection, self.space_no, self.index_no,
return RequestSelect(connection, self.space_no, self.index_no,
self.key_list , self.offset, self.limit)
def unpack(self, response):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment