Skip to content

Commit 585a4bf

Browse files
committed
flake8
1 parent c540796 commit 585a4bf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/pyarrow/_parquet.pyx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,8 @@ cdef class ParquetReader:
809809
return array
810810

811811
cdef int check_compression_name(name) except -1:
812-
if name.upper() not in ['NONE', 'SNAPPY', 'GZIP', 'LZO', 'BROTLI', 'LZ4', 'ZSTD']:
812+
if name.upper() not in ['NONE', 'SNAPPY', 'GZIP', 'LZO', 'BROTLI', 'LZ4',
813+
'ZSTD']:
813814
raise ArrowException("Unsupported compression: " + name)
814815
return 0
815816

0 commit comments

Comments
 (0)