Skip to content

Commit 0536cff

Browse files
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
1 parent 7c51c8f commit 0536cff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyiceberg/io/pyarrow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ class PyArrowFile(InputFile, OutputFile):
206206
>>> # output_file.create().write(b'foobytes')
207207
"""
208208

209-
_fs: FileSystem
209+
_filesystem: FileSystem
210210
_path: str
211211
_buffer_size: int
212212

0 commit comments

Comments
 (0)