We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e71080 commit 00551e3Copy full SHA for 00551e3
1 file changed
graphgen/operators/read/read_files.py
@@ -178,7 +178,8 @@ def _read_fn() -> Iterable[Block]:
178
# Convert list of dicts to PyArrow Table (Block)
179
if all_records:
180
# Create PyArrow Table from records
181
- table = pa.Table.from_pylist(all_records)
+ # pylint: disable=no-value-for-parameter
182
+ table = pa.Table.from_pylist(mapping=all_records)
183
yield table
184
185
return _read_fn
0 commit comments