Skip to content

Commit

Permalink
maybe fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
paleolimbot committed Nov 29, 2024
1 parent 63d72c2 commit 8ff213e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions python/pyarrow/src/arrow/python/decimal.cc
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,7 @@ Status DecimalFromPythonDecimal(PyObject* python_decimal, const DecimalType& arr
return InternalDecimalFromPythonDecimal(python_decimal, arrow_type, out);
}

Status DecimalFromPyObject(PyObject* obj, const DecimalType& arrow_type,
Decimal32* out) {
Status DecimalFromPyObject(PyObject* obj, const DecimalType& arrow_type, Decimal32* out) {
return InternalDecimalFromPyObject(obj, arrow_type, out);
}

Expand All @@ -179,8 +178,7 @@ Status DecimalFromPythonDecimal(PyObject* python_decimal, const DecimalType& arr
return InternalDecimalFromPythonDecimal(python_decimal, arrow_type, out);
}

Status DecimalFromPyObject(PyObject* obj, const DecimalType& arrow_type,
Decimal64* out) {
Status DecimalFromPyObject(PyObject* obj, const DecimalType& arrow_type, Decimal64* out) {
return InternalDecimalFromPyObject(obj, arrow_type, out);
}

Expand Down

0 comments on commit 8ff213e

Please sign in to comment.