Skip to content

Commit

Permalink
Remove needless except
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Feb 25, 2025
1 parent 8584053 commit bf7bdda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pyarrow/array.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -1031,7 +1031,7 @@ cdef class Array(_PandasConvertible):
"the `pyarrow.Array.from_*` functions instead."
.format(self.__class__.__name__))

cdef void init(self, const shared_ptr[CArray]& sp_array) except *:
cdef void init(self, const shared_ptr[CArray]& sp_array):
self.sp_array = sp_array
self.ap = sp_array.get()
self.type = pyarrow_wrap_data_type(self.sp_array.get().type())
Expand Down

0 comments on commit bf7bdda

Please sign in to comment.