Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Jul 26, 2024
1 parent 1a3fd40 commit 3d69078
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions python/pyarrow/src/arrow/python/flight.cc
Original file line number Diff line number Diff line change
Expand Up @@ -371,9 +371,10 @@ Status CreateFlightInfo(const std::shared_ptr<arrow::Schema>& schema,
int64_t total_records, int64_t total_bytes, bool ordered,
const std::string& app_metadata,
std::unique_ptr<arrow::flight::FlightInfo>* 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<arrow::flight::FlightInfo>(
new arrow::flight::FlightInfo(std::move(result)));
return Status::OK();
Expand Down

0 comments on commit 3d69078

Please sign in to comment.