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(
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
You can’t perform that action at this time.
0 commit comments