From 0536cff361eeac4bb45d574d85738aba772ae3ea Mon Sep 17 00:00:00 2001 From: Sebastiano Meneghin <100027832+SebastianoMeneghin@users.noreply.github.com> Date: Thu, 2 May 2024 07:35:19 +0200 Subject: [PATCH] Changed class variable names in pyarrow.py (#686) 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