File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ def cursor(
208
208
self ,
209
209
arraysize : int = DEFAULT_ARRAY_SIZE ,
210
210
buffer_size_bytes : int = DEFAULT_RESULT_BUFFER_SIZE_BYTES ,
211
- lz4_compression : bool = True
211
+ lz4_compression : bool = True ,
212
212
) -> "Cursor" :
213
213
"""
214
214
Return a new Cursor object using the connection.
@@ -223,7 +223,7 @@ def cursor(
223
223
self .thrift_backend ,
224
224
arraysize = arraysize ,
225
225
result_buffer_size_bytes = buffer_size_bytes ,
226
- lz4_compression = lz4_compression
226
+ lz4_compression = lz4_compression ,
227
227
)
228
228
self ._cursors .append (cursor )
229
229
return cursor
@@ -254,7 +254,7 @@ def __init__(
254
254
thrift_backend : ThriftBackend ,
255
255
result_buffer_size_bytes : int = DEFAULT_RESULT_BUFFER_SIZE_BYTES ,
256
256
arraysize : int = DEFAULT_ARRAY_SIZE ,
257
- lz4_compression : bool = True
257
+ lz4_compression : bool = True ,
258
258
) -> None :
259
259
"""
260
260
These objects represent a database cursor, which is used to manage the context of a fetch
You can’t perform that action at this time.
0 commit comments