Skip to content

Commit 00551e3

Browse files
fix: fix pylint problems
1 parent 1e71080 commit 00551e3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

graphgen/operators/read/read_files.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,8 @@ def _read_fn() -> Iterable[Block]:
178178
# Convert list of dicts to PyArrow Table (Block)
179179
if all_records:
180180
# Create PyArrow Table from records
181-
table = pa.Table.from_pylist(all_records)
181+
# pylint: disable=no-value-for-parameter
182+
table = pa.Table.from_pylist(mapping=all_records)
182183
yield table
183184

184185
return _read_fn

0 commit comments

Comments
 (0)