Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
danepitkin committed Aug 23, 2024
1 parent 0f6072d commit e5bf773
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion python/pyarrow/table.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -1447,7 +1447,6 @@ cdef class ChunkedArray(_PandasConvertible):
raise NotImplementedError("Implemented only for data on CPU device")



def chunked_array(arrays, type=None):
"""
Construct chunked array from list of array-like objects
Expand Down
3 changes: 1 addition & 2 deletions python/pyarrow/tests/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -3359,7 +3359,6 @@ def test_invalid_non_join_column():
assert exp_error_msg in str(excinfo.value)



@pytest.fixture
def cuda_context():
cuda = pytest.importorskip("pyarrow.cuda")
Expand Down Expand Up @@ -3432,7 +3431,7 @@ def test_chunked_array_non_cpu(cuda_context, cpu_chunked_array, cuda_chunked_arr

# get_total_buffer_size() test
assert (cpu_and_cuda_chunked_array.get_total_buffer_size() ==
(cuda_chunked_array.get_total_buffer_size() +
(cuda_chunked_array.get_total_buffer_size() +
cpu_chunked_array.get_total_buffer_size()))

# getitem() test
Expand Down

0 comments on commit e5bf773

Please sign in to comment.