Skip to content

Commit

Permalink
Linter corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
AlenkaF committed Aug 24, 2023
1 parent 24e1e3b commit a79ac96
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cpp/src/arrow/extension/fixed_shape_tensor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ bool FixedShapeTensorType::ExtensionEquals(const ExtensionType& other) const {
std::string FixedShapeTensorType::ToString() const {
std::stringstream ss;
ss << "extension<" << this->extension_name()
<< "[value_type=" << value_type_->ToString()
<< ", shape=[";
<< "[value_type=" << value_type_->ToString() << ", shape=[";
std::string separator;
for (auto v : shape_) {
ss << separator << v;
Expand Down

0 comments on commit a79ac96

Please sign in to comment.