Skip to content

Commit 82ca1ee

Browse files
remove un-necessary assignment
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent f448a8f commit 82ca1ee

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/databricks/sql/backend/thrift_backend.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1159,10 +1159,7 @@ def _handle_execute_response(self, resp, cursor):
11591159
resp.directResults and resp.directResults.operationStatus,
11601160
)
11611161

1162-
execute_response = self._results_message_to_execute_response(
1163-
resp, final_operation_state
1164-
)
1165-
return execute_response
1162+
return self._results_message_to_execute_response(resp, final_operation_state)
11661163

11671164
def _handle_execute_response_async(self, resp, cursor):
11681165
command_id = CommandId.from_thrift_handle(resp.operationHandle)

0 commit comments

Comments
 (0)