This is an automated email from the ASF dual-hosted git repository.
raulcd pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new bb74cd78cd GH-34513: [CI][Python] Remove unused imports from
_acero.pyx to fix linting failures (#34514)
bb74cd78cd is described below
commit bb74cd78cd2d56a5286a2fd2494c79d8ed85d230
Author: Raúl Cumplido <[email protected]>
AuthorDate: Thu Mar 9 14:28:00 2023 +0100
GH-34513: [CI][Python] Remove unused imports from _acero.pyx to fix linting
failures (#34514)
### Rationale for this change
PR linting jobs are failing
### What changes are included in this PR?
Lint fixes :)
### Are these changes tested?
On CI
### Are there any user-facing changes?
No
* Closes: #34513
Authored-by: Raúl Cumplido <[email protected]>
Signed-off-by: Raúl Cumplido <[email protected]>
---
python/pyarrow/_acero.pyx | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/python/pyarrow/_acero.pyx b/python/pyarrow/_acero.pyx
index 91f3ef6712..411665b0b1 100644
--- a/python/pyarrow/_acero.pyx
+++ b/python/pyarrow/_acero.pyx
@@ -25,11 +25,10 @@
from pyarrow.includes.common cimport *
from pyarrow.includes.libarrow cimport *
from pyarrow.includes.libarrow_dataset cimport *
-from pyarrow.lib cimport (Table, check_status, pyarrow_unwrap_table,
pyarrow_wrap_table,
+from pyarrow.lib cimport (Table, pyarrow_unwrap_table, pyarrow_wrap_table,
RecordBatchReader)
from pyarrow.lib import frombytes, tobytes
from pyarrow._compute cimport Expression, FunctionOptions, _ensure_field_ref,
_true
-from pyarrow.compute import field
cdef class ExecNodeOptions(_Weakrefable):