Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Cannot Reproduce
-
2.0.0
-
None
Description
The functions `pyarrow.Table.from_batches` and `pyarrow.Table.from_pandas` both allow for passing of `Schema` objects.
Both methods currently take in an argument called `Schema_schema`, whereas the documentation describes it should be `schema`, of type `Schema`.
The other `.from_XX` methods correctly take the argument as just `schema`.
Fixing this just involves changing these two keyword arguments.
Edit:
I find that I only had type errors, the compiled function that is called already expects the argument to be called `schema`. Thus this is only a documentation issue.