From 4d07d8a50bcee3e4af35a2300a8139eb49b8e841 Mon Sep 17 00:00:00 2001 From: Adrian Rumpold Date: Wed, 28 Feb 2024 12:04:58 +0100 Subject: [PATCH] docs: Fix PyArrow integration code highlighting --- docs/guides/integrations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/integrations.md b/docs/guides/integrations.md index e950dcc5..3f97dda4 100644 --- a/docs/guides/integrations.md +++ b/docs/guides/integrations.md @@ -62,6 +62,6 @@ PyArrow `read_*` and `write_*` functions take an explicit `filesystem` parameter The following example code illustrates the use of lakeFS-spec with PyArrow, reading a Parquet file and writing it back to a lakeFS repository as a partitioned CSV dataset in the context of a [transaction](transactions.md): -```python hl_lines="12 17" +```python hl_lines="10 15" --8<-- "docs/_code/pyarrow_example.py" ```