Skip to content

Commit edcf826

Browse files
committed
Black linting
Signed-off-by: Matthew Kim <11141331+mattdeekay@users.noreply.github.com>
1 parent 9096ccd commit edcf826

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

src/databricks/sql/thrift_backend.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -655,9 +655,7 @@ def _hive_schema_to_description(t_table_schema):
655655
ThriftBackend._col_to_description(col) for col in t_table_schema.columns
656656
]
657657

658-
def _results_message_to_execute_response(
659-
self, resp, operation_state
660-
):
658+
def _results_message_to_execute_response(self, resp, operation_state):
661659
if resp.directResults and resp.directResults.resultSetMetadata:
662660
t_result_set_metadata_resp = resp.directResults.resultSetMetadata
663661
else:
@@ -892,9 +890,7 @@ def _handle_execute_response(self, resp, cursor):
892890
resp.directResults and resp.directResults.operationStatus,
893891
)
894892

895-
return self._results_message_to_execute_response(
896-
resp, final_operation_state
897-
)
893+
return self._results_message_to_execute_response(resp, final_operation_state)
898894

899895
def fetch_results(
900896
self,

0 commit comments

Comments
 (0)