Skip to content

Commit 5afa733

Browse files
line breaks after multi-line pyfocs
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent bf6d41c commit 5afa733

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/databricks/sql/result_set.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ def __init__(
5151
:param result_buffer_size_bytes: The size (in bytes) of the internal buffer + max fetch
5252
amount :param arraysize: The max number of rows to fetch at a time (PEP-249)
5353
"""
54+
5455
self.command_id = command_id
5556
self.op_state = op_state
5657
self.has_been_closed_server_side = has_been_closed_server_side
@@ -117,6 +118,7 @@ def close(self) -> None:
117118
If the connection has not been closed, and the result set has not already
118119
been closed on the server for some other reason, issue a request to the server to close it.
119120
"""
121+
120122
try:
121123
if (
122124
self.op_state != CommandState.CLOSED
@@ -155,6 +157,7 @@ def __init__(
155157
arraysize: Default number of rows to fetch
156158
use_cloud_fetch: Whether to use cloud fetch for retrieving results
157159
"""
160+
158161
super().__init__(
159162
connection,
160163
thrift_client,

0 commit comments

Comments
 (0)