Skip to content

Commit d82a63d

Browse files
authored
Add missing filesystem kwarg (#404)
1 parent cae486d commit d82a63d

File tree

1 file changed

+1
-1
lines changed
  • src/nested_pandas/nestedframe

1 file changed

+1
-1
lines changed

src/nested_pandas/nestedframe/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def _read_parquet_into_table(
246246
def _read_table_with_partial_load_check(data, columns=None, filesystem=None, **kwargs):
247247
"""Read a pyarrow table with partial load check for nested structures"""
248248
try:
249-
return pq.read_table(data, columns=columns, **kwargs)
249+
return pq.read_table(data, columns=columns, filesystem=filesystem, **kwargs)
250250
except ArrowInvalid as e:
251251
# if it's not related to partial loading of nested structures, re-raise
252252
if "No match for" not in str(e):

0 commit comments

Comments
 (0)