Skip to content

Commit 71feef9

Browse files
clean imports and attributes
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent 66d7517 commit 71feef9

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/databricks/sql/backend/databricks_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ def execute_command(
8888
) -> Union["ResultSet", None]:
8989
"""
9090
Executes a SQL command or query within the specified session.
91+
9192
This method sends a SQL command to the server for execution and handles
9293
the response. It can operate in both synchronous and asynchronous modes.
9394

src/databricks/sql/backend/sea/utils/http_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import json
22
import logging
33
import requests
4-
from typing import Callable, Dict, Any, Optional, Union, List, Tuple
4+
from typing import Callable, Dict, Any, Optional, List, Tuple
55
from urllib.parse import urljoin
66

77
from databricks.sql.auth.authenticators import AuthProvider

src/databricks/sql/result_set.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def __init__(
7272
self.command_id = command_id
7373
self.status = status
7474
self.has_been_closed_server_side = has_been_closed_server_side
75-
self._has_more_rows = has_more_rows
75+
self.has_more_rows = has_more_rows
7676
self.results = results_queue
7777
self._is_staging_operation = is_staging_operation
7878

0 commit comments

Comments
 (0)