Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
emkornfield authored and pitrou committed Jul 2, 2019
1 parent 14e3467 commit 484b3a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/arrow/python/common.cc
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ bool IsPythonError(const Status& status) {
if (status.ok()) {
return false;
}
auto detail = status.detail().get();
auto* detail = status.detail();
return detail != nullptr && detail->type_id() == kErrorDetailTypeId;
}

Expand Down

0 comments on commit 484b3a2

Please sign in to comment.