From 80fda8090949fd991348b1903cc5e11f1013be6d Mon Sep 17 00:00:00 2001 From: Sebastiano Meneghin <100027832+SebastianoMeneghin@users.noreply.github.com> Date: Wed, 1 May 2024 11:35:29 +0200 Subject: [PATCH] Changed class variable names in pyarrow.py Renamed class variable in PyArrowFile from ._fs to _filesystem, in order to assign with the __init()__ method the Object FileSystem to the class, and not to the single instance of the Class, as it was happening before --- pyiceberg/io/pyarrow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyiceberg/io/pyarrow.py b/pyiceberg/io/pyarrow.py index 2a10e0ef90..72b386d25a 100644 --- a/pyiceberg/io/pyarrow.py +++ b/pyiceberg/io/pyarrow.py @@ -206,7 +206,7 @@ class PyArrowFile(InputFile, OutputFile): >>> # output_file.create().write(b'foobytes') """ - _fs: FileSystem + _filesystem: FileSystem _path: str _buffer_size: int