Skip to content

Commit 8cdf57d

Browse files
Reformatting
Signed-off-by: Mohit Singla <[email protected]>
1 parent 6a43ab2 commit 8cdf57d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/databricks/sql/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def cursor(
208208
self,
209209
arraysize: int = DEFAULT_ARRAY_SIZE,
210210
buffer_size_bytes: int = DEFAULT_RESULT_BUFFER_SIZE_BYTES,
211-
lz4_compression: bool = True
211+
lz4_compression: bool = True,
212212
) -> "Cursor":
213213
"""
214214
Return a new Cursor object using the connection.
@@ -223,7 +223,7 @@ def cursor(
223223
self.thrift_backend,
224224
arraysize=arraysize,
225225
result_buffer_size_bytes=buffer_size_bytes,
226-
lz4_compression=lz4_compression
226+
lz4_compression=lz4_compression,
227227
)
228228
self._cursors.append(cursor)
229229
return cursor
@@ -254,7 +254,7 @@ def __init__(
254254
thrift_backend: ThriftBackend,
255255
result_buffer_size_bytes: int = DEFAULT_RESULT_BUFFER_SIZE_BYTES,
256256
arraysize: int = DEFAULT_ARRAY_SIZE,
257-
lz4_compression: bool = True
257+
lz4_compression: bool = True,
258258
) -> None:
259259
"""
260260
These objects represent a database cursor, which is used to manage the context of a fetch

0 commit comments

Comments
 (0)