From 61df1a98dcb2b7139e8efbadab600677f1a6e073 Mon Sep 17 00:00:00 2001 From: Maulik Patel <21225464+maupatel@users.noreply.github.com> Date: Mon, 17 Aug 2026 16:39:00 -0500 Subject: [PATCH] GH-50897: [Python] Fix typo LZ0 -> LZO in ORC writer docstring Signed-off-by: Maulik Patel <21225464+maupatel@users.noreply.github.com> --- python/pyarrow/orc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyarrow/orc.py b/python/pyarrow/orc.py index 4e0d66ec6659..8da0a2de797e 100644 --- a/python/pyarrow/orc.py +++ b/python/pyarrow/orc.py @@ -200,7 +200,7 @@ def read(self, columns=None): compression : string, default 'uncompressed' The compression codec. Valid values: {'UNCOMPRESSED', 'SNAPPY', 'ZLIB', 'LZ4', 'ZSTD'} - Note that LZ0 is currently not supported. + Note that LZO is currently not supported. compression_block_size : int, default 64 * 1024 Size of each compression block in bytes. compression_strategy : string, default 'speed'