This is an automated email from the ASF dual-hosted git repository.

honahx pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git


The following commit(s) were added to refs/heads/main by this push:
     new 0536cff3 Changed class variable names in pyarrow.py (#686)
0536cff3 is described below

commit 0536cff361eeac4bb45d574d85738aba772ae3ea
Author: Sebastiano Meneghin 
<[email protected]>
AuthorDate: Thu May 2 07:35:19 2024 +0200

    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 2a10e0ef..72b386d2 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
 

Reply via email to