diff --git a/python/pyarrow/src/arrow/python/flight.cc b/python/pyarrow/src/arrow/python/flight.cc index ce5e6dfa94e3b..71a6ac5ff0201 100644 --- a/python/pyarrow/src/arrow/python/flight.cc +++ b/python/pyarrow/src/arrow/python/flight.cc @@ -371,9 +371,10 @@ Status CreateFlightInfo(const std::shared_ptr& schema, int64_t total_records, int64_t total_bytes, bool ordered, const std::string& app_metadata, std::unique_ptr* out) { - ARROW_ASSIGN_OR_RAISE(auto result, arrow::flight::FlightInfo::Make( - *schema, descriptor, endpoints, total_records, - total_bytes, ordered, app_metadata)); + ARROW_ASSIGN_OR_RAISE(auto result, + arrow::flight::FlightInfo::Make(*schema, descriptor, endpoints, + total_records, total_bytes, + ordered, app_metadata)); *out = std::unique_ptr( new arrow::flight::FlightInfo(std::move(result))); return Status::OK();