Skip to content

Commit

Permalink
Changed class variable names in pyarrow.py (#686)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
SebastianoMeneghin authored May 2, 2024
1 parent 7c51c8f commit 0536cff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyiceberg/io/pyarrow.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ class PyArrowFile(InputFile, OutputFile):
>>> # output_file.create().write(b'foobytes')
"""

_fs: FileSystem
_filesystem: FileSystem
_path: str
_buffer_size: int

Expand Down

0 comments on commit 0536cff

Please sign in to comment.